class Google::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.
Attributes
account_id[RW]
The ID of the account for which the status is reported. Corresponds to the JSON property `accountId` @return [String]
data_quality_issues[RW]
A list of data quality issues. Corresponds to the JSON property `dataQualityIssues` @return [Array<Google::Apis::ContentV2::AccountStatusDataQualityIssue>]
kind[RW]
Identifies what kind of resource this is. Value: the fixed string “content# accountStatus”. Corresponds to the JSON property `kind` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/content_v2/classes.rb, line 628 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/content_v2/classes.rb, line 633 def update!(**args) @account_id = args[:account_id] if args.key?(:account_id) @data_quality_issues = args[:data_quality_issues] if args.key?(:data_quality_issues) @kind = args[:kind] if args.key?(:kind) end