class Google::Apis::ContentV2_1::OrdersCustomBatchRequestEntryUpdateShipmentScheduledDeliveryDetails
ScheduledDeliveryDetails used to update the scheduled delivery order.
Attributes
carrier_phone_number[RW]
The phone number of the carrier fulfilling the delivery. The phone number should be formatted as the international notation in Corresponds to the JSON property `carrierPhoneNumber` @return [String]
scheduled_date[RW]
The date a shipment is scheduled for delivery, in ISO 8601 format. Corresponds to the JSON property `scheduledDate` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/content_v2_1/classes.rb, line 8202 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/content_v2_1/classes.rb, line 8207 def update!(**args) @carrier_phone_number = args[:carrier_phone_number] if args.key?(:carrier_phone_number) @scheduled_date = args[:scheduled_date] if args.key?(:scheduled_date) end