Class: Google::Apis::ContentV2::AccountStatus

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

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ AccountStatus

Returns a new instance of AccountStatus



232
233
234
# File 'generated/google/apis/content_v2/classes.rb', line 232

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

Instance Attribute Details

#account_idString

The ID of the account for which the status is reported. Corresponds to the JSON property accountId

Returns:

  • (String)


208
209
210
# File 'generated/google/apis/content_v2/classes.rb', line 208

def 
  @account_id
end

#account_level_issuesArray<Google::Apis::ContentV2::AccountStatusAccountLevelIssue>

A list of account level issues. Corresponds to the JSON property accountLevelIssues



213
214
215
# File 'generated/google/apis/content_v2/classes.rb', line 213

def 
  @account_level_issues
end

#data_quality_issuesArray<Google::Apis::ContentV2::AccountStatusDataQualityIssue>

A list of data quality issues. Corresponds to the JSON property dataQualityIssues



218
219
220
# File 'generated/google/apis/content_v2/classes.rb', line 218

def data_quality_issues
  @data_quality_issues
end

#kindString

Identifies what kind of resource this is. Value: the fixed string "content# accountStatus". Corresponds to the JSON property kind

Returns:

  • (String)


224
225
226
# File 'generated/google/apis/content_v2/classes.rb', line 224

def kind
  @kind
end

#website_claimedBoolean Also known as: website_claimed?

Whether the account's website is claimed or not. Corresponds to the JSON property websiteClaimed

Returns:

  • (Boolean)


229
230
231
# File 'generated/google/apis/content_v2/classes.rb', line 229

def website_claimed
  @website_claimed
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



237
238
239
240
241
242
243
# File 'generated/google/apis/content_v2/classes.rb', line 237

def update!(**args)
  @account_id = args[:account_id] if args.key?(:account_id)
  @account_level_issues = args[:account_level_issues] if args.key?(:account_level_issues)
  @data_quality_issues = args[:data_quality_issues] if args.key?(:data_quality_issues)
  @kind = args[:kind] if args.key?(:kind)
  @website_claimed = args[:website_claimed] if args.key?(:website_claimed)
end