You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The quantity of the product reserved for the customer.
[optional]
quantity_available
int
The availability of the product reserved.
[optional]
effectivedate
str
The reservation date for the product in UTC format.
[optional]
expirydate
str
The expiration date for the reservation of the product in UTC format.
[optional]
Example
fromxi.sdk.resellers.models.price_and_availability_response_inner_reserve_inventory_details_innerimportPriceAndAvailabilityResponseInnerReserveInventoryDetailsInner# TODO update the JSON string belowjson="{}"# create an instance of PriceAndAvailabilityResponseInnerReserveInventoryDetailsInner from a JSON stringprice_and_availability_response_inner_reserve_inventory_details_inner_instance=PriceAndAvailabilityResponseInnerReserveInventoryDetailsInner.from_json(json)
# print the JSON string representation of the objectprint(PriceAndAvailabilityResponseInnerReserveInventoryDetailsInner.to_json())
# convert the object into a dictprice_and_availability_response_inner_reserve_inventory_details_inner_dict=price_and_availability_response_inner_reserve_inventory_details_inner_instance.to_dict()
# create an instance of PriceAndAvailabilityResponseInnerReserveInventoryDetailsInner from a dictprice_and_availability_response_inner_reserve_inventory_details_inner_from_dict=PriceAndAvailabilityResponseInnerReserveInventoryDetailsInner.from_dict(price_and_availability_response_inner_reserve_inventory_details_inner_dict)