class Google::Apis::ContentV2_1::ReturnPolicyOnlineReturnShippingFee

The return shipping fee. This can either be a fixed fee or a boolean to indicate that the customer pays the actual shipping cost.

Attributes

fixed_fee[RW]

The price represented as a number and currency. Corresponds to the JSON property `fixedFee` @return [Google::Apis::ContentV2_1::PriceAmount]

type[RW]

Type of return shipping fee. Corresponds to the JSON property `type` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/content_v2_1/classes.rb, line 13241
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/content_v2_1/classes.rb, line 13246
def update!(**args)
  @fixed_fee = args[:fixed_fee] if args.key?(:fixed_fee)
  @type = args[:type] if args.key?(:type)
end