Class: Azure::GraphRbac::V1_6::Models::SignInName
- Inherits:
-
Object
- Object
- Azure::GraphRbac::V1_6::Models::SignInName
- Includes:
- MsRestAzure
- Defined in:
- lib/1.6/generated/azure_graph_rbac/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
-
#additional_properties ⇒ Object
collection.
-
#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
#additional_properties ⇒ Object
collection
18 19 20 |
# File 'lib/1.6/generated/azure_graph_rbac/models/sign_in_name.rb', line 18 def additional_properties @additional_properties end |
#type ⇒ String
sign-in types in your directory, such as ‘emailAddress’ or ‘userName’.
22 23 24 |
# File 'lib/1.6/generated/azure_graph_rbac/models/sign_in_name.rb', line 22 def type @type end |
#value ⇒ String
across the company/tenant. For example, ‘[email protected]’.
26 27 28 |
# File 'lib/1.6/generated/azure_graph_rbac/models/sign_in_name.rb', line 26 def value @value end |
Class Method Details
.mapper ⇒ Object
Mapper for SignInName class as Ruby Hash. This will be used for serialization/deserialization.
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
# 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 |