class Google::Apis::VaultV1::AccountCount

The results count for each account.

Attributes

account[RW]

User's information. Corresponds to the JSON property `account` @return [Google::Apis::VaultV1::UserInfo]

count[RW]

The number of results (messages or files) found for this account. Corresponds to the JSON property `count` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/vault_v1/classes.rb, line 39
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/vault_v1/classes.rb, line 44
def update!(**args)
  @account = args[:account] if args.key?(:account)
  @count = args[:count] if args.key?(:count)
end