Skip to content

Commit

Permalink
LaserShipV2 changes fixed and sorted // umitguner
Browse files Browse the repository at this point in the history
  • Loading branch information
umitgnr authored Sep 22, 2022
1 parent fc1de2a commit 0deabd7
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions EasyPost/Options.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@ public class Options : Resource
public string delivery_confirmation { get; set; }
[JsonProperty("delivery_time_preference")]
public string delivery_time_preference { get; set; }
[JsonProperty("dropoff_max_datetime")]
public string dropoff_max_datetime { get; set; }
[JsonProperty("dropoff_type")]
public string dropoff_type { get; set; }
[JsonProperty("dry_ice")]
Expand Down Expand Up @@ -130,6 +132,8 @@ public class Options : Resource
public Dictionary<string, object> payment { get; set; }
[JsonProperty("peel_and_return")]
public bool peel_and_return { get; set; }
[JsonProperty("pickup_max_datetime")]
public DateTime? pickup_max_datetime { get; set; }
[JsonProperty("pickup_min_datetime")]
public DateTime? pickup_min_datetime { get; set; }
[JsonProperty("po_sort")]
Expand Down Expand Up @@ -180,12 +184,6 @@ public class Options : Resource
public string special_rates_eligibility { get; set; }
[JsonProperty("suppress_etd")]
public bool? suppress_etd { get; set; }
[JsonProperty("dropoff_max_datetime")]
public string dropoff_max_datetime { get; set; }
[JsonProperty("pickup_max_datetime")]
public string pickup_max_datetime { get; set; }
[JsonProperty("pickup_min_datetime")]
public string pickup_min_datetime { get; set; }
#endregion
}
}

0 comments on commit 0deabd7

Please sign in to comment.