class Azure::Graph::Mgmt::V1_6::Models::SignInName

Contains information about a sign-in name of a local account user in an Azure Active Directory B2C tenant.

Attributes

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_mgmt_graph/models/sign_in_name.rb, line 29
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'SignInName',
    type: {
      name: 'Composite',
      class_name: 'SignInName',
      model_properties: {
        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