class Azure::GraphRbac::V1_6::Models::SignInName
Contains information about a sign-in name of a local account user in an Azure
Active Directory B2C tenant.
Attributes
additional_properties[RW]
@return Unmatched properties from the message are deserialized this collection
type[RW]
@return [String] A string value that can be used to classify user sign-in types in your directory, such as 'emailAddress' or 'userName'.
value[RW]
@return [String] The sign-in used by the local account. Must be unique across the company/tenant. For example, 'johnc@example.com'.
Private Class Methods
mapper()
click to toggle source
Mapper for SignInName
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/1.6/generated/azure_graph_rbac/models/sign_in_name.rb, line 33 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'SignInName', type: { name: 'Composite', class_name: 'SignInName', model_properties: { additional_properties: { client_side_validation: true, required: false, type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'ObjectElementType', type: { name: 'Object' } } } }, type: { client_side_validation: true, required: false, serialized_name: 'type', type: { name: 'String' } }, value: { client_side_validation: true, required: false, serialized_name: 'value', type: { name: 'String' } } } } } end