Class: Google::Apis::ContentV2_1::MerchantOrderReturn
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::MerchantOrderReturn
- 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
-
#creation_date ⇒ String
Corresponds to the JSON property
creationDate
. -
#merchant_order_id ⇒ String
Corresponds to the JSON property
merchantOrderId
. -
#order_id ⇒ String
Corresponds to the JSON property
orderId
. -
#order_return_id ⇒ String
Corresponds to the JSON property
orderReturnId
. -
#return_items ⇒ Array<Google::Apis::ContentV2_1::MerchantOrderReturnItem>
Corresponds to the JSON property
returnItems
. -
#return_shipments ⇒ Array<Google::Apis::ContentV2_1::ReturnShipment>
Corresponds to the JSON property
returnShipments
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MerchantOrderReturn
constructor
A new instance of MerchantOrderReturn.
-
#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) ⇒ MerchantOrderReturn
Returns a new instance of MerchantOrderReturn
3340 3341 3342 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 3340 def initialize(**args) update!(**args) end |
Instance Attribute Details
#creation_date ⇒ String
Corresponds to the JSON property creationDate
3313 3314 3315 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 3313 def creation_date @creation_date end |
#merchant_order_id ⇒ String
Corresponds to the JSON property merchantOrderId
3318 3319 3320 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 3318 def merchant_order_id @merchant_order_id end |
#order_id ⇒ String
Corresponds to the JSON property orderId
3323 3324 3325 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 3323 def order_id @order_id end |
#order_return_id ⇒ String
Corresponds to the JSON property orderReturnId
3328 3329 3330 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 3328 def order_return_id @order_return_id end |
#return_items ⇒ Array<Google::Apis::ContentV2_1::MerchantOrderReturnItem>
Corresponds to the JSON property returnItems
3333 3334 3335 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 3333 def return_items @return_items end |
#return_shipments ⇒ Array<Google::Apis::ContentV2_1::ReturnShipment>
Corresponds to the JSON property returnShipments
3338 3339 3340 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 3338 def return_shipments @return_shipments end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3345 3346 3347 3348 3349 3350 3351 3352 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 3345 def update!(**args) @creation_date = args[:creation_date] if args.key?(:creation_date) @merchant_order_id = args[:merchant_order_id] if args.key?(:merchant_order_id) @order_id = args[:order_id] if args.key?(:order_id) @order_return_id = args[:order_return_id] if args.key?(:order_return_id) @return_items = args[:return_items] if args.key?(:return_items) @return_shipments = args[:return_shipments] if args.key?(:return_shipments) end |