Class: Google::Apis::ContentV2::DatafeedStatusesBatchRequestEntry
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::DatafeedStatusesBatchRequestEntry
- 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 datafeedstatuses request.
Instance Attribute Summary collapse
-
#batch_id ⇒ Fixnum
An entry ID, unique within the batch request.
-
#datafeed_id ⇒ String
The ID of the data feed to get or delete.
-
#merchant_id ⇒ String
The ID of the managing account.
-
#request_method ⇒ String
Corresponds to the JSON property
method
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DatafeedStatusesBatchRequestEntry
constructor
A new instance of DatafeedStatusesBatchRequestEntry.
-
#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) ⇒ DatafeedStatusesBatchRequestEntry
Returns a new instance of DatafeedStatusesBatchRequestEntry.
2117 2118 2119 |
# File 'generated/google/apis/content_v2/classes.rb', line 2117 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
2100 2101 2102 |
# File 'generated/google/apis/content_v2/classes.rb', line 2100 def batch_id @batch_id end |
#datafeed_id ⇒ String
The ID of the data feed to get or delete.
Corresponds to the JSON property datafeedId
2105 2106 2107 |
# File 'generated/google/apis/content_v2/classes.rb', line 2105 def datafeed_id @datafeed_id end |
#merchant_id ⇒ String
The ID of the managing account.
Corresponds to the JSON property merchantId
2110 2111 2112 |
# File 'generated/google/apis/content_v2/classes.rb', line 2110 def merchant_id @merchant_id end |
#request_method ⇒ String
Corresponds to the JSON property method
2115 2116 2117 |
# File 'generated/google/apis/content_v2/classes.rb', line 2115 def request_method @request_method end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2122 2123 2124 2125 2126 2127 |
# File 'generated/google/apis/content_v2/classes.rb', line 2122 def update!(**args) @batch_id = args[:batch_id] if args.key?(:batch_id) @datafeed_id = args[:datafeed_id] if args.key?(:datafeed_id) @merchant_id = args[:merchant_id] if args.key?(:merchant_id) @request_method = args[:request_method] if args.key?(:request_method) end |