Class: Google::Apis::ContentV2::AccountStatusesBatchResponseEntry

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
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 accountstatuses response.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AccountStatusesBatchResponseEntry

Returns a new instance of AccountStatusesBatchResponseEntry.



1298
1299
1300
# File 'generated/google/apis/content_v2/classes.rb', line 1298

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

Instance Attribute Details

#account_statusGoogle::Apis::ContentV2::AccountStatus

The status of an account, i.e., information about its products, which is computed offline and not returned immediately at insertion time. Corresponds to the JSON property accountStatus



1286
1287
1288
# File 'generated/google/apis/content_v2/classes.rb', line 1286

def 
  @account_status
end

#batch_idFixnum

The ID of the request entry this entry responds to. Corresponds to the JSON property batchId

Returns:

  • (Fixnum)


1291
1292
1293
# File 'generated/google/apis/content_v2/classes.rb', line 1291

def batch_id
  @batch_id
end

#errorsGoogle::Apis::ContentV2::Errors

A list of errors returned by a failed batch entry. Corresponds to the JSON property errors



1296
1297
1298
# File 'generated/google/apis/content_v2/classes.rb', line 1296

def errors
  @errors
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1303
1304
1305
1306
1307
# File 'generated/google/apis/content_v2/classes.rb', line 1303

def update!(**args)
  @account_status = args[:account_status] if args.key?(:account_status)
  @batch_id = args[:batch_id] if args.key?(:batch_id)
  @errors = args[:errors] if args.key?(:errors)
end