Class: Azure::ARM::Graph::Models::SignInName

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/generated/azure_mgmt_graph/models/sign_in_name.rb

Overview

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

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#typeString

sign-in types in your directory, such as ‘emailAddress’ or ‘userName’.

Returns:

  • (String)

    A string value that can be used to classify user



18
19
20
# File 'lib/generated/azure_mgmt_graph/models/sign_in_name.rb', line 18

def type
  @type
end

#valueString

across the company/tenant. For example, ‘[email protected]’.

Returns:

  • (String)

    The sign-in used by the local account. Must be unique



22
23
24
# File 'lib/generated/azure_mgmt_graph/models/sign_in_name.rb', line 22

def value
  @value
end

Class Method Details

.mapperObject

Mapper for SignInName class as Ruby Hash. This will be used for serialization/deserialization.



29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# File 'lib/generated/azure_mgmt_graph/models/sign_in_name.rb', line 29

def self.mapper()
  {
    required: false,
    serialized_name: 'SignInName',
    type: {
      name: 'Composite',
      class_name: 'SignInName',
      model_properties: {
        type: {
          required: false,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        value: {
          required: false,
          serialized_name: 'value',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end