class Google::Apis::AdminReportsV1::UsageReport::Entity
Information about the type of the item.
Attributes
customer_id[RW]
Obfuscated customer id for the record. Corresponds to the JSON property `customerId` @return [String]
profile_id[RW]
Obfuscated user id for the record. Corresponds to the JSON property `profileId` @return [String]
type[RW]
The type of item, can be a customer or user. Corresponds to the JSON property `type` @return [String]
user_email[RW]
user's email. Corresponds to the JSON property `userEmail` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/admin_reports_v1/classes.rb, line 416 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/admin_reports_v1/classes.rb, line 421 def update!(**args) @customer_id = args[:customer_id] if args.key?(:customer_id) @profile_id = args[:profile_id] if args.key?(:profile_id) @type = args[:type] if args.key?(:type) @user_email = args[:user_email] if args.key?(:user_email) end