class Google::Apis::AdminDirectoryV1::UserExternalId
JSON template for an externalId entry.
Attributes
custom_type[RW]
Custom type. Corresponds to the JSON property `customType` @return [String]
type[RW]
The type of the Id. Corresponds to the JSON property `type` @return [String]
value[RW]
The value of the id. Corresponds to the JSON property `value` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/admin_directory_v1/classes.rb, line 2632 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_directory_v1/classes.rb, line 2637 def update!(**args) @custom_type = args[:custom_type] if args.key?(:custom_type) @type = args[:type] if args.key?(:type) @value = args[:value] if args.key?(:value) end