Class: Google::Apis::ContentV2::AccountsBatchRequestEntry
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::AccountsBatchRequestEntry
- Defined in:
- generated/google/apis/content_v2/classes.rb,
generated/google/apis/content_v2/representations.rb,
generated/google/apis/content_v2/representations.rb
Overview
A batch entry encoding a single non-batch accounts request.
Instance Attribute Summary collapse
-
#account ⇒ Google::Apis::ContentV2::Account
Account data.
-
#account_id ⇒ String
The ID of the account to get or delete.
-
#batch_id ⇒ Fixnum
An entry ID, unique within the batch request.
-
#merchant_id ⇒ String
The ID of the managing account.
-
#request_method ⇒ String
Corresponds to the JSON property
method
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AccountsBatchRequestEntry
constructor
A new instance of AccountsBatchRequestEntry.
-
#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) ⇒ AccountsBatchRequestEntry
Returns a new instance of AccountsBatchRequestEntry.
944 945 946 |
# File 'generated/google/apis/content_v2/classes.rb', line 944 def initialize(**args) update!(**args) end |
Instance Attribute Details
#account ⇒ Google::Apis::ContentV2::Account
Account data.
Corresponds to the JSON property account
921 922 923 |
# File 'generated/google/apis/content_v2/classes.rb', line 921 def account @account end |
#account_id ⇒ String
The ID of the account to get or delete. Only defined if the method is get or
delete.
Corresponds to the JSON property accountId
927 928 929 |
# File 'generated/google/apis/content_v2/classes.rb', line 927 def account_id @account_id end |
#batch_id ⇒ Fixnum
An entry ID, unique within the batch request.
Corresponds to the JSON property batchId
932 933 934 |
# File 'generated/google/apis/content_v2/classes.rb', line 932 def batch_id @batch_id end |
#merchant_id ⇒ String
The ID of the managing account.
Corresponds to the JSON property merchantId
937 938 939 |
# File 'generated/google/apis/content_v2/classes.rb', line 937 def merchant_id @merchant_id end |
#request_method ⇒ String
Corresponds to the JSON property method
942 943 944 |
# File 'generated/google/apis/content_v2/classes.rb', line 942 def request_method @request_method end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
949 950 951 952 953 954 955 |
# File 'generated/google/apis/content_v2/classes.rb', line 949 def update!(**args) @account = args[:account] if args.key?(:account) @account_id = args[:account_id] if args.key?(:account_id) @batch_id = args[:batch_id] if args.key?(:batch_id) @merchant_id = args[:merchant_id] if args.key?(:merchant_id) @request_method = args[:request_method] if args.key?(:request_method) end |