Skip to content

Commit 85371f4

Browse files
authored
Merge pull request #811 from Baros6647/main
2 parents ca8dc79 + 1c416dc commit 85371f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Source/FikaAmazonAPI/AmazonSpApiSDK/Models/FulfillmentInboundv20240320/SelectedDeliveryWindow.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public SelectedDeliveryWindow() { }
3838
/// <param name="editableUntil">The timestamp at which this Window can no longer be edited.</param>
3939
/// <param name="endDate">The end timestamp of the window (required).</param>
4040
/// <param name="startDate">The start timestamp of the window (required).</param>
41-
public SelectedDeliveryWindow(AvailabilityType availabilityType = default(AvailabilityType),
41+
public SelectedDeliveryWindow(AvailabilityType? availabilityType = default(AvailabilityType?),
4242
string deliveryWindowOptionId = default(string),
4343
DateTime? editableUntil = default(DateTime?),
4444
DateTime? endDate = default(DateTime?),
@@ -88,7 +88,7 @@ public SelectedDeliveryWindow() { }
8888
/// </summary>
8989
/// <value>Identifies type of Delivery Window Availability. Values: AVAILABLE, CONGESTED</value>
9090
[DataMember(Name = "availabilityType", EmitDefaultValue = false)]
91-
public AvailabilityType AvailabilityType { get; set; }
91+
public AvailabilityType? AvailabilityType { get; set; }
9292

9393
/// <summary>
9494
/// Identifier of a delivery window option. A delivery window option represent one option for when a shipment is expected to be delivered.

0 commit comments

Comments
 (0)