Class: Google::Apis::ContentV2::OrdersCustomBatchRequestEntryCancel
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::OrdersCustomBatchRequestEntryCancel
- 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
-
#reason ⇒ String
The reason for the cancellation.
-
#reason_text ⇒ String
The explanation of the reason.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OrdersCustomBatchRequestEntryCancel
constructor
A new instance of OrdersCustomBatchRequestEntryCancel.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ OrdersCustomBatchRequestEntryCancel
Returns a new instance of OrdersCustomBatchRequestEntryCancel.
6070 6071 6072 |
# File 'lib/google/apis/content_v2/classes.rb', line 6070 def initialize(**args) update!(**args) end |
Instance Attribute Details
#reason ⇒ String
The reason for the cancellation. Acceptable values are: - "
customerInitiatedCancel
" - "invalidCoupon
" - "malformedShippingAddress
" -
"noInventory
" - "other
" - "priceError
" - "shippingPriceError
" - "
taxError
" - "undeliverableShippingAddress
" - "unsupportedPoBoxAddress
"
Corresponds to the JSON property reason
6063 6064 6065 |
# File 'lib/google/apis/content_v2/classes.rb', line 6063 def reason @reason end |
#reason_text ⇒ String
The explanation of the reason.
Corresponds to the JSON property reasonText
6068 6069 6070 |
# File 'lib/google/apis/content_v2/classes.rb', line 6068 def reason_text @reason_text end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6075 6076 6077 6078 |
# File 'lib/google/apis/content_v2/classes.rb', line 6075 def update!(**args) @reason = args[:reason] if args.key?(:reason) @reason_text = args[:reason_text] if args.key?(:reason_text) end |