Class: Google::Apis::ContentV2::OrderLineItemReturnInfo

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) ⇒ OrderLineItemReturnInfo

Returns a new instance of OrderLineItemReturnInfo.



4820
4821
4822
# File 'generated/google/apis/content_v2/classes.rb', line 4820

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

Instance Attribute Details

#days_to_returnFixnum

How many days later the item can be returned. Corresponds to the JSON property daysToReturn

Returns:

  • (Fixnum)


4807
4808
4809
# File 'generated/google/apis/content_v2/classes.rb', line 4807

def days_to_return
  @days_to_return
end

#is_returnableBoolean Also known as: is_returnable?

Whether the item is returnable. Corresponds to the JSON property isReturnable

Returns:

  • (Boolean)


4812
4813
4814
# File 'generated/google/apis/content_v2/classes.rb', line 4812

def is_returnable
  @is_returnable
end

#policy_urlString

URL of the item return policy. Corresponds to the JSON property policyUrl

Returns:

  • (String)


4818
4819
4820
# File 'generated/google/apis/content_v2/classes.rb', line 4818

def policy_url
  @policy_url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4825
4826
4827
4828
4829
# File 'generated/google/apis/content_v2/classes.rb', line 4825

def update!(**args)
  @days_to_return = args[:days_to_return] if args.key?(:days_to_return)
  @is_returnable = args[:is_returnable] if args.key?(:is_returnable)
  @policy_url = args[:policy_url] if args.key?(:policy_url)
end