Class: Google::Apis::ContentV2::OrderLineItemShippingDetails
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContentV2::OrderLineItemShippingDetails
 
 
- 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 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The delivery by date, in ISO 8601 format.
 - 
  
    
      #method_prop  ⇒ Google::Apis::ContentV2::OrderLineItemShippingDetailsMethod 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Details of the shipping method.
 - 
  
    
      #ship_by_date  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ship by date, in ISO 8601 format.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ OrderLineItemShippingDetails 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of OrderLineItemShippingDetails.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ OrderLineItemShippingDetails
Returns a new instance of OrderLineItemShippingDetails
      4336 4337 4338  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 4336 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#deliver_by_date ⇒ String
The delivery by date, in ISO 8601 format.
Corresponds to the JSON property deliverByDate
      4324 4325 4326  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 4324 def deliver_by_date @deliver_by_date end  | 
  
#method_prop ⇒ Google::Apis::ContentV2::OrderLineItemShippingDetailsMethod
Details of the shipping method.
Corresponds to the JSON property method
      4329 4330 4331  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 4329 def method_prop @method_prop end  | 
  
#ship_by_date ⇒ String
The ship by date, in ISO 8601 format.
Corresponds to the JSON property shipByDate
      4334 4335 4336  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 4334 def ship_by_date @ship_by_date end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      4341 4342 4343 4344 4345  | 
    
      # File 'generated/google/apis/content_v2/classes.rb', line 4341 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) end  |