Class: Google::Apis::ContentV2::OrderLineItemShippingDetails
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::OrderLineItemShippingDetails
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/content_v2/classes.rb,
generated/google/apis/content_v2/representations.rb,
generated/google/apis/content_v2/representations.rb
Instance Attribute Summary collapse
-
#deliver_by_date ⇒ String
Required.
-
#method_prop ⇒ Google::Apis::ContentV2::OrderLineItemShippingDetailsMethod
Required.
-
#ship_by_date ⇒ String
Required.
-
#type ⇒ String
Type of shipment.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OrderLineItemShippingDetails
constructor
A new instance of OrderLineItemShippingDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ OrderLineItemShippingDetails
Returns a new instance of OrderLineItemShippingDetails.
5000 5001 5002 |
# File 'generated/google/apis/content_v2/classes.rb', line 5000 def initialize(**args) update!(**args) end |
Instance Attribute Details
#deliver_by_date ⇒ String
Required. The delivery by date, in ISO 8601 format.
Corresponds to the JSON property deliverByDate
4981 4982 4983 |
# File 'generated/google/apis/content_v2/classes.rb', line 4981 def deliver_by_date @deliver_by_date end |
#method_prop ⇒ Google::Apis::ContentV2::OrderLineItemShippingDetailsMethod
Required. Details of the shipping method.
Corresponds to the JSON property method
4986 4987 4988 |
# File 'generated/google/apis/content_v2/classes.rb', line 4986 def method_prop @method_prop end |
#ship_by_date ⇒ String
Required. The ship by date, in ISO 8601 format.
Corresponds to the JSON property shipByDate
4991 4992 4993 |
# File 'generated/google/apis/content_v2/classes.rb', line 4991 def ship_by_date @ship_by_date end |
#type ⇒ String
Type of shipment. Indicates whether deliveryDetails
or pickupDetails
is
applicable for this shipment. Acceptable values are: - "delivery
" - "pickup
"
Corresponds to the JSON property type
4998 4999 5000 |
# File 'generated/google/apis/content_v2/classes.rb', line 4998 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5005 5006 5007 5008 5009 5010 |
# File 'generated/google/apis/content_v2/classes.rb', line 5005 def update!(**args) @deliver_by_date = args[:deliver_by_date] if args.key?(:deliver_by_date) @method_prop = args[:method_prop] if args.key?(:method_prop) @ship_by_date = args[:ship_by_date] if args.key?(:ship_by_date) @type = args[:type] if args.key?(:type) end |