You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.1 KiB

1 year ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Text.Json.Serialization;
  6. using System.Threading.Tasks;
  7. namespace GMCabsDriverAssistantSolution.Models.Rydo
  8. {
  9. public class AcceptDeclineBookingResponse
  10. {
  11. public int StatusCode { get; set; }
  12. public string Message { get; set; }
  13. [JsonPropertyName("future_booking")]
  14. public bool FutureBooking { get; set; }
  15. [JsonPropertyName("payment_method_id")]
  16. public Guid? PaymentMethodId { get; set; }
  17. [JsonPropertyName("passenger_name")]
  18. public string PassengerName { get; set; }
  19. [JsonPropertyName("pickup_time")]
  20. public long? PickupTime { get; set; }
  21. [JsonPropertyName("is_corporate")]
  22. public bool IsCorporate { get; set; }
  23. public string PickUpAddress { get; set; }
  24. [JsonPropertyName("booking_id")]
  25. public Guid BookingId { get; set; }
  26. [JsonPropertyName("passenger_phone_number")]
  27. public string PassengerPhoneNumber { get; set; }
  28. }
  29. }