class Google::Apis::SasportalV1alpha1::SasPortalCustomer
Entity representing a SAS customer.
Attributes
display_name[RW]
Required. Name of the organization that the customer entity represents. Corresponds to the JSON property `displayName` @return [String]
name[RW]
Output only. Resource name of the customer. Corresponds to the JSON property `name` @return [String]
sas_user_ids[RW]
User IDs used by the devices belonging to this customer. Corresponds to the JSON property `sasUserIds` @return [Array<String>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/sasportal_v1alpha1/classes.rb, line 125 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/sasportal_v1alpha1/classes.rb, line 130 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @name = args[:name] if args.key?(:name) @sas_user_ids = args[:sas_user_ids] if args.key?(:sas_user_ids) end