class Google::Apis::CloudchannelV1::GoogleCloudChannelV1AdminUser

Information needed to create an Admin User for Google Workspace.

Attributes

email[RW]

Primary email of the admin user. Corresponds to the JSON property `email` @return [String]

family_name[RW]

Family name of the admin user. Corresponds to the JSON property `familyName` @return [String]

given_name[RW]

Given name of the admin user. Corresponds to the JSON property `givenName` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/cloudchannel_v1/classes.rb, line 75
def update!(**args)
  @email = args[:email] if args.key?(:email)
  @family_name = args[:family_name] if args.key?(:family_name)
  @given_name = args[:given_name] if args.key?(:given_name)
end