Class: Google::Apis::ContentV2::OrderLineItemShippingDetailsMethod

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ OrderLineItemShippingDetailsMethod

Returns a new instance of OrderLineItemShippingDetailsMethod



2889
2890
2891
# File 'generated/google/apis/content_v2/classes.rb', line 2889

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#carrierString

The carrier for the shipping. Optional. Corresponds to the JSON property carrier

Returns:

  • (String)


2872
2873
2874
# File 'generated/google/apis/content_v2/classes.rb', line 2872

def carrier
  @carrier
end

#max_days_in_transitFixnum

Maximum transit time. Corresponds to the JSON property maxDaysInTransit

Returns:

  • (Fixnum)


2877
2878
2879
# File 'generated/google/apis/content_v2/classes.rb', line 2877

def max_days_in_transit
  @max_days_in_transit
end

#method_nameString

The name of the shipping method. Corresponds to the JSON property methodName

Returns:

  • (String)


2882
2883
2884
# File 'generated/google/apis/content_v2/classes.rb', line 2882

def method_name
  @method_name
end

#min_days_in_transitFixnum

Minimum transit time. Corresponds to the JSON property minDaysInTransit

Returns:

  • (Fixnum)


2887
2888
2889
# File 'generated/google/apis/content_v2/classes.rb', line 2887

def min_days_in_transit
  @min_days_in_transit
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2894
2895
2896
2897
2898
2899
# File 'generated/google/apis/content_v2/classes.rb', line 2894

def update!(**args)
  @carrier = args[:carrier] if args.key?(:carrier)
  @max_days_in_transit = args[:max_days_in_transit] if args.key?(:max_days_in_transit)
  @method_name = args[:method_name] if args.key?(:method_name)
  @min_days_in_transit = args[:min_days_in_transit] if args.key?(:min_days_in_transit)
end