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



3412
3413
3414
# File 'generated/google/apis/content_v2/classes.rb', line 3412

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

Instance Attribute Details

#carrierString

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

Returns:

  • (String)


3395
3396
3397
# File 'generated/google/apis/content_v2/classes.rb', line 3395

def carrier
  @carrier
end

#max_days_in_transitFixnum

Maximum transit time. Corresponds to the JSON property maxDaysInTransit

Returns:

  • (Fixnum)


3400
3401
3402
# File 'generated/google/apis/content_v2/classes.rb', line 3400

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)


3405
3406
3407
# File 'generated/google/apis/content_v2/classes.rb', line 3405

def method_name
  @method_name
end

#min_days_in_transitFixnum

Minimum transit time. Corresponds to the JSON property minDaysInTransit

Returns:

  • (Fixnum)


3410
3411
3412
# File 'generated/google/apis/content_v2/classes.rb', line 3410

def min_days_in_transit
  @min_days_in_transit
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3417
3418
3419
3420
3421
3422
# File 'generated/google/apis/content_v2/classes.rb', line 3417

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