Class: Google::Apis::ContentV2::RefundReason
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::RefundReason
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/content_v2/classes.rb,
lib/google/apis/content_v2/representations.rb,
lib/google/apis/content_v2/representations.rb
Instance Attribute Summary collapse
-
#description ⇒ String
Description of the reason.
-
#reason_code ⇒ String
Code of the refund reason.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RefundReason
constructor
A new instance of RefundReason.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RefundReason
Returns a new instance of RefundReason.
10013 10014 10015 |
# File 'lib/google/apis/content_v2/classes.rb', line 10013 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
Description of the reason.
Corresponds to the JSON property description
9990 9991 9992 |
# File 'lib/google/apis/content_v2/classes.rb', line 9990 def description @description end |
#reason_code ⇒ String
Code of the refund reason. Acceptable values are: - "adjustment
" - "
autoPostInternal
" - "autoPostInvalidBillingAddress
" - "autoPostNoInventory
" - "autoPostPriceError
" - "autoPostUndeliverableShippingAddress
" - "
couponAbuse
" - "courtesyAdjustment
" - "customerCanceled
" - "
customerDiscretionaryReturn
" - "customerInitiatedMerchantCancel
" - "
customerSupportRequested
" - "deliveredLateByCarrier
" - "deliveredTooLate
"
- "
expiredItem
" - "failToPushOrderGoogleError
" - "failToPushOrderMerchantError
" - "failToPushOrderMerchantFulfillmentError
" - "failToPushOrderToMerchant
" - "failToPushOrderToMerchantOutOfStock
" - "feeAdjustment
" - "invalidCoupon
" - "lateShipmentCredit
" - "malformedShippingAddress
" - "merchantDidNotShipOnTime
" - "noInventory
" - "orderTimeout
" - "other
" - "paymentAbuse
" - "paymentDeclined
" - "priceAdjustment
" - "priceError
" - "productArrivedDamaged
" - "productNotAsDescribed
" - "promoReallocation
" - "qualityNotAsExpected
" - "returnRefundAbuse
" - "shippingCostAdjustment
" - "shippingPriceError
" - "taxAdjustment
" - "taxError
" - "undeliverableShippingAddress
" - "unsupportedPoBoxAddress
" - "wrongProductShipped
" Corresponds to the JSON propertyreasonCode
10011 10012 10013 |
# File 'lib/google/apis/content_v2/classes.rb', line 10011 def reason_code @reason_code end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10018 10019 10020 10021 |
# File 'lib/google/apis/content_v2/classes.rb', line 10018 def update!(**args) @description = args[:description] if args.key?(:description) @reason_code = args[:reason_code] if args.key?(:reason_code) end |