Class: Azure::ARM::Graph::Models::SignInName
- Inherits:
-
Object
- Object
- Azure::ARM::Graph::Models::SignInName
- 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
-
#type ⇒ String
sign-in types in your directory, such as ‘emailAddress’ or ‘userName’.
-
#value ⇒ String
across the company/tenant.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for SignInName class as Ruby Hash.
Instance Attribute Details
#type ⇒ String
sign-in types in your directory, such as ‘emailAddress’ or ‘userName’.
18 19 20 |
# File 'lib/generated/azure_mgmt_graph/models/sign_in_name.rb', line 18 def type @type end |
#value ⇒ String
across the company/tenant. For example, ‘[email protected]’.
22 23 24 |
# File 'lib/generated/azure_mgmt_graph/models/sign_in_name.rb', line 22 def value @value end |
Class Method Details
.mapper ⇒ Object
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 |