Class: Google::Apis::ContentV2_1::ReturnaddressCustomBatchRequestEntry
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::ReturnaddressCustomBatchRequestEntry
- 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
-
#batch_id ⇒ Fixnum
An entry ID, unique within the batch request.
-
#merchant_id ⇒ Fixnum
The Merchant Center account ID.
-
#method_prop ⇒ String
Corresponds to the JSON property
method
. -
#return_address ⇒ Google::Apis::ContentV2_1::ReturnAddress
Return address resource.
-
#return_address_id ⇒ String
The return address ID.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ReturnaddressCustomBatchRequestEntry
constructor
A new instance of ReturnaddressCustomBatchRequestEntry.
-
#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) ⇒ ReturnaddressCustomBatchRequestEntry
Returns a new instance of ReturnaddressCustomBatchRequestEntry
8759 8760 8761 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 8759 def initialize(**args) update!(**args) end |
Instance Attribute Details
#batch_id ⇒ Fixnum
An entry ID, unique within the batch request.
Corresponds to the JSON property batchId
8737 8738 8739 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 8737 def batch_id @batch_id end |
#merchant_id ⇒ Fixnum
The Merchant Center account ID.
Corresponds to the JSON property merchantId
8742 8743 8744 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 8742 def merchant_id @merchant_id end |
#method_prop ⇒ String
Corresponds to the JSON property method
8747 8748 8749 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 8747 def method_prop @method_prop end |
#return_address ⇒ Google::Apis::ContentV2_1::ReturnAddress
Return address resource.
Corresponds to the JSON property returnAddress
8752 8753 8754 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 8752 def return_address @return_address end |
#return_address_id ⇒ String
The return address ID. Set this only if the method is delete or get.
Corresponds to the JSON property returnAddressId
8757 8758 8759 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 8757 def return_address_id @return_address_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8764 8765 8766 8767 8768 8769 8770 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 8764 def update!(**args) @batch_id = args[:batch_id] if args.key?(:batch_id) @merchant_id = args[:merchant_id] if args.key?(:merchant_id) @method_prop = args[:method_prop] if args.key?(:method_prop) @return_address = args[:return_address] if args.key?(:return_address) @return_address_id = args[:return_address_id] if args.key?(:return_address_id) end |