class Google::Apis::ContentV2::AccountsBatchResponseEntry
A batch entry encoding a single non-batch accounts response.
Attributes
Account
data. After the creation of a new account it may take a few minutes before it is fully operational. The methods delete, insert, and update require the admin role. Corresponds to the JSON property `account` @return [Google::Apis::ContentV2::Account]
The ID of the request entry this entry responds to. Corresponds to the JSON property `batchId` @return [Fixnum]
A list of errors returned by a failed batch entry. Corresponds to the JSON property `errors` @return [Google::Apis::ContentV2::Errors]
Identifies what kind of resource this is. Value: the fixed string “`content# accountsCustomBatchResponseEntry`” Corresponds to the JSON property `kind` @return [String]
Deprecated. This field is never set. Acceptable values are: - “`active`” - “` inactive`” - “`pending`” Corresponds to the JSON property `linkStatus` @return [String]
Public Class Methods
# File lib/google/apis/content_v2/classes.rb, line 1089 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/content_v2/classes.rb, line 1094 def update!(**args) @account = args[:account] if args.key?(:account) @batch_id = args[:batch_id] if args.key?(:batch_id) @errors = args[:errors] if args.key?(:errors) @kind = args[:kind] if args.key?(:kind) @link_status = args[:link_status] if args.key?(:link_status) end