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.

39 lines
1.3 KiB

1 year ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Text.Json.Serialization;
  5. namespace GMCabsDriverAssistant.Models
  6. {
  7. public class StartRideResponse
  8. {
  9. public int StatusCode { get; set; }
  10. public string Message { get; set; }
  11. [JsonPropertyName("passenger_name")]
  12. public string PassengerName { get; set; }
  13. [JsonPropertyName("is_corporate")]
  14. public bool IsCorporate { get; set; }
  15. [JsonPropertyName("end_address")]
  16. public string EndAddress { get; set; }
  17. [JsonPropertyName("end_suburb")]
  18. public string EndSuburb { get; set; }
  19. [JsonPropertyName("stopover_locations")]
  20. public List<StopoverLocations> StopoverLocations { get; set; }
  21. [JsonPropertyName("end_latitude")]
  22. public double EndLatitude { get; set; }
  23. [JsonPropertyName("end_longitude")]
  24. public double EndLongitude { get; set; }
  25. public string FullDestinationAddress { get; set; }
  26. [JsonPropertyName("payment_method_id")]
  27. public Guid? PaymentMethodId { get; set; }
  28. [JsonPropertyName("fixed_amount")]
  29. public decimal? FixedAmount { get; set; }
  30. public int FrameWidth { get; set; }
  31. public string DriverId { get; set; }
  32. public Guid BookingId { get; set; }
  33. }
  34. }