Class: Google::Apis::ContentV2::MerchantOrderReturn

Inherits:
Object
  • Object
show all
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

Overview

Order return. Production access (all methods) requires the order manager role. Sandbox access does not.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MerchantOrderReturn

Returns a new instance of MerchantOrderReturn.



4051
4052
4053
# File 'lib/google/apis/content_v2/classes.rb', line 4051

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#creation_dateString

The date of creation of the return, in ISO 8601 format. Corresponds to the JSON property creationDate

Returns:

  • (String)


4024
4025
4026
# File 'lib/google/apis/content_v2/classes.rb', line 4024

def creation_date
  @creation_date
end

#merchant_order_idString

Merchant defined order ID. Corresponds to the JSON property merchantOrderId

Returns:

  • (String)


4029
4030
4031
# File 'lib/google/apis/content_v2/classes.rb', line 4029

def merchant_order_id
  @merchant_order_id
end

#order_idString

Google order ID. Corresponds to the JSON property orderId

Returns:

  • (String)


4034
4035
4036
# File 'lib/google/apis/content_v2/classes.rb', line 4034

def order_id
  @order_id
end

#order_return_idString

Order return ID generated by Google. Corresponds to the JSON property orderReturnId

Returns:

  • (String)


4039
4040
4041
# File 'lib/google/apis/content_v2/classes.rb', line 4039

def order_return_id
  @order_return_id
end

#return_itemsArray<Google::Apis::ContentV2::MerchantOrderReturnItem>

Items of the return. Corresponds to the JSON property returnItems



4044
4045
4046
# File 'lib/google/apis/content_v2/classes.rb', line 4044

def return_items
  @return_items
end

#return_shipmentsArray<Google::Apis::ContentV2::ReturnShipment>

Shipments of the return. Corresponds to the JSON property returnShipments



4049
4050
4051
# File 'lib/google/apis/content_v2/classes.rb', line 4049

def return_shipments
  @return_shipments
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4056
4057
4058
4059
4060
4061
4062
4063
# File 'lib/google/apis/content_v2/classes.rb', line 4056

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