Class: Google::Apis::ContentV2_1::MerchantOrderReturnItem
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::MerchantOrderReturnItem
- Defined in:
- generated/google/apis/content_v2_1/classes.rb,
generated/google/apis/content_v2_1/representations.rb,
generated/google/apis/content_v2_1/representations.rb
Instance Attribute Summary collapse
-
#customer_return_reason ⇒ Google::Apis::ContentV2_1::CustomerReturnReason
Corresponds to the JSON property
customerReturnReason
. -
#item_id ⇒ String
Corresponds to the JSON property
itemId
. -
#merchant_return_reason ⇒ Google::Apis::ContentV2_1::RefundReason
Corresponds to the JSON property
merchantReturnReason
. -
#product ⇒ Google::Apis::ContentV2_1::OrderLineItemProduct
Corresponds to the JSON property
product
. -
#return_shipment_ids ⇒ Array<String>
Corresponds to the JSON property
returnShipmentIds
. -
#state ⇒ String
Corresponds to the JSON property
state
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MerchantOrderReturnItem
constructor
A new instance of MerchantOrderReturnItem.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ MerchantOrderReturnItem
Returns a new instance of MerchantOrderReturnItem
3389 3390 3391 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 3389 def initialize(**args) update!(**args) end |
Instance Attribute Details
#customer_return_reason ⇒ Google::Apis::ContentV2_1::CustomerReturnReason
Corresponds to the JSON property customerReturnReason
3362 3363 3364 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 3362 def customer_return_reason @customer_return_reason end |
#item_id ⇒ String
Corresponds to the JSON property itemId
3367 3368 3369 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 3367 def item_id @item_id end |
#merchant_return_reason ⇒ Google::Apis::ContentV2_1::RefundReason
Corresponds to the JSON property merchantReturnReason
3372 3373 3374 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 3372 def merchant_return_reason @merchant_return_reason end |
#product ⇒ Google::Apis::ContentV2_1::OrderLineItemProduct
Corresponds to the JSON property product
3377 3378 3379 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 3377 def product @product end |
#return_shipment_ids ⇒ Array<String>
Corresponds to the JSON property returnShipmentIds
3382 3383 3384 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 3382 def return_shipment_ids @return_shipment_ids end |
#state ⇒ String
Corresponds to the JSON property state
3387 3388 3389 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 3387 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3394 3395 3396 3397 3398 3399 3400 3401 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 3394 def update!(**args) @customer_return_reason = args[:customer_return_reason] if args.key?(:customer_return_reason) @item_id = args[:item_id] if args.key?(:item_id) @merchant_return_reason = args[:merchant_return_reason] if args.key?(:merchant_return_reason) @product = args[:product] if args.key?(:product) @return_shipment_ids = args[:return_shipment_ids] if args.key?(:return_shipment_ids) @state = args[:state] if args.key?(:state) end |