class Google::Apis::AuthorizedbuyersmarketplaceV1::ClientUser
A user of a client who has restricted access to the Marketplace and certain other sections of the Authorized Buyers UI based on the role granted to the associated client.
Attributes
email[RW]
Required. The client user’s email address that has to be unique across all users for the same client. Corresponds to the JSON property ‘email` @return [String]
name[RW]
Output only. The resource name of the client user. Format: ‘buyers/`accountId`/ clients/`clientAccountId`/users/`userId“ Corresponds to the JSON property `name` @return [String]
state[RW]
Output only. The state of the client user. Corresponds to the JSON property ‘state` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb, line 341 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/authorizedbuyersmarketplace_v1/classes.rb, line 346 def update!(**args) @email = args[:email] if args.key?(:email) @name = args[:name] if args.key?(:name) @state = args[:state] if args.key?(:state) end