Class: Google::Apis::ContentV2::MerchantOrderReturn
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::MerchantOrderReturn
- Defined in:
- generated/google/apis/content_v2/classes.rb,
generated/google/apis/content_v2/representations.rb,
generated/google/apis/content_v2/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::MerchantOrderReturnItem>
Corresponds to the JSON property
returnItems
. -
#return_shipments ⇒ Array<Google::Apis::ContentV2::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
3941 3942 3943 |
# File 'generated/google/apis/content_v2/classes.rb', line 3941 def initialize(**args) update!(**args) end |
Instance Attribute Details
#creation_date ⇒ String
Corresponds to the JSON property creationDate
3914 3915 3916 |
# File 'generated/google/apis/content_v2/classes.rb', line 3914 def creation_date @creation_date end |
#merchant_order_id ⇒ String
Corresponds to the JSON property merchantOrderId
3919 3920 3921 |
# File 'generated/google/apis/content_v2/classes.rb', line 3919 def merchant_order_id @merchant_order_id end |
#order_id ⇒ String
Corresponds to the JSON property orderId
3924 3925 3926 |
# File 'generated/google/apis/content_v2/classes.rb', line 3924 def order_id @order_id end |
#order_return_id ⇒ String
Corresponds to the JSON property orderReturnId
3929 3930 3931 |
# File 'generated/google/apis/content_v2/classes.rb', line 3929 def order_return_id @order_return_id end |
#return_items ⇒ Array<Google::Apis::ContentV2::MerchantOrderReturnItem>
Corresponds to the JSON property returnItems
3934 3935 3936 |
# File 'generated/google/apis/content_v2/classes.rb', line 3934 def return_items @return_items end |
#return_shipments ⇒ Array<Google::Apis::ContentV2::ReturnShipment>
Corresponds to the JSON property returnShipments
3939 3940 3941 |
# File 'generated/google/apis/content_v2/classes.rb', line 3939 def return_shipments @return_shipments end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3946 3947 3948 3949 3950 3951 3952 3953 |
# File 'generated/google/apis/content_v2/classes.rb', line 3946 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 |