Class: MicrosoftGraph::Models::B2xIdentityUserFlow
- Inherits:
-
IdentityUserFlow
- Object
- Entity
- IdentityUserFlow
- MicrosoftGraph::Models::B2xIdentityUserFlow
- Includes:
- MicrosoftKiotaAbstractions::Parsable
- Defined in:
- lib/models/b2x_identity_user_flow.rb
Class Method Summary collapse
-
.create_from_discriminator_value(parse_node) ⇒ Object
Creates a new instance of the appropriate class based on discriminator value.
Instance Method Summary collapse
-
#api_connector_configuration ⇒ Object
Gets the apiConnectorConfiguration property value.
-
#api_connector_configuration=(value) ⇒ Object
Sets the apiConnectorConfiguration property value.
-
#get_field_deserializers ⇒ Object
The deserialization information for the current model.
-
#identity_providers ⇒ Object
Gets the identityProviders property value.
-
#identity_providers=(value) ⇒ Object
Sets the identityProviders property value.
-
#initialize ⇒ Object
constructor
Instantiates a new b2xIdentityUserFlow and sets the default values.
-
#languages ⇒ Object
Gets the languages property value.
-
#languages=(value) ⇒ Object
Sets the languages property value.
-
#serialize(writer) ⇒ Object
Serializes information the current object.
-
#user_attribute_assignments ⇒ Object
Gets the userAttributeAssignments property value.
-
#user_attribute_assignments=(value) ⇒ Object
Sets the userAttributeAssignments property value.
-
#user_flow_identity_providers ⇒ Object
Gets the userFlowIdentityProviders property value.
-
#user_flow_identity_providers=(value) ⇒ Object
Sets the userFlowIdentityProviders property value.
Methods inherited from IdentityUserFlow
#user_flow_type, #user_flow_type=, #user_flow_type_version, #user_flow_type_version=
Methods inherited from Entity
#additional_data, #additional_data=, #id, #id=, #odata_type, #odata_type=
Constructor Details
#initialize ⇒ Object
Instantiates a new b2xIdentityUserFlow and sets the default values.
43 44 45 |
# File 'lib/models/b2x_identity_user_flow.rb', line 43 def initialize() super end |
Class Method Details
.create_from_discriminator_value(parse_node) ⇒ Object
Creates a new instance of the appropriate class based on discriminator value
51 52 53 54 |
# File 'lib/models/b2x_identity_user_flow.rb', line 51 def self.create_from_discriminator_value(parse_node) raise StandardError, 'parse_node cannot be null' if parse_node.nil? return B2xIdentityUserFlow.new end |
Instance Method Details
#api_connector_configuration ⇒ Object
Gets the apiConnectorConfiguration property value. Configuration for enabling an API connector for use as part of the self-service sign-up user flow. You can only obtain the value of this object using Get userFlowApiConnectorConfiguration.
28 29 30 |
# File 'lib/models/b2x_identity_user_flow.rb', line 28 def api_connector_configuration return @api_connector_configuration end |
#api_connector_configuration=(value) ⇒ Object
Sets the apiConnectorConfiguration property value. Configuration for enabling an API connector for use as part of the self-service sign-up user flow. You can only obtain the value of this object using Get userFlowApiConnectorConfiguration.
36 37 38 |
# File 'lib/models/b2x_identity_user_flow.rb', line 36 def api_connector_configuration=(value) @api_connector_configuration = value end |
#get_field_deserializers ⇒ Object
The deserialization information for the current model
59 60 61 62 63 64 65 66 67 |
# File 'lib/models/b2x_identity_user_flow.rb', line 59 def get_field_deserializers() return super.merge({ "apiConnectorConfiguration" => lambda {|n| @api_connector_configuration = n.get_object_value(lambda {|pn| MicrosoftGraph::Models::UserFlowApiConnectorConfiguration.create_from_discriminator_value(pn) }) }, "identityProviders" => lambda {|n| @identity_providers = n.get_collection_of_object_values(lambda {|pn| MicrosoftGraph::Models::IdentityProvider.create_from_discriminator_value(pn) }) }, "languages" => lambda {|n| @languages = n.get_collection_of_object_values(lambda {|pn| MicrosoftGraph::Models::UserFlowLanguageConfiguration.create_from_discriminator_value(pn) }) }, "userAttributeAssignments" => lambda {|n| @user_attribute_assignments = n.get_collection_of_object_values(lambda {|pn| MicrosoftGraph::Models::IdentityUserFlowAttributeAssignment.create_from_discriminator_value(pn) }) }, "userFlowIdentityProviders" => lambda {|n| @user_flow_identity_providers = n.get_collection_of_object_values(lambda {|pn| MicrosoftGraph::Models::IdentityProviderBase.create_from_discriminator_value(pn) }) }, }) end |
#identity_providers ⇒ Object
Gets the identityProviders property value. The identity providers included in the user flow.
72 73 74 |
# File 'lib/models/b2x_identity_user_flow.rb', line 72 def identity_providers return @identity_providers end |
#identity_providers=(value) ⇒ Object
Sets the identityProviders property value. The identity providers included in the user flow.
80 81 82 |
# File 'lib/models/b2x_identity_user_flow.rb', line 80 def identity_providers=(value) @identity_providers = value end |
#languages ⇒ Object
Gets the languages property value. The languages supported for customization within the user flow. Language customization is enabled by default in self-service sign-up user flow. You cannot create custom languages in self-service sign-up user flows.
87 88 89 |
# File 'lib/models/b2x_identity_user_flow.rb', line 87 def languages return @languages end |
#languages=(value) ⇒ Object
Sets the languages property value. The languages supported for customization within the user flow. Language customization is enabled by default in self-service sign-up user flow. You cannot create custom languages in self-service sign-up user flows.
95 96 97 |
# File 'lib/models/b2x_identity_user_flow.rb', line 95 def languages=(value) @languages = value end |
#serialize(writer) ⇒ Object
Serializes information the current object
103 104 105 106 107 108 109 110 111 |
# File 'lib/models/b2x_identity_user_flow.rb', line 103 def serialize(writer) raise StandardError, 'writer cannot be null' if writer.nil? super writer.write_object_value("apiConnectorConfiguration", @api_connector_configuration) writer.write_collection_of_object_values("identityProviders", @identity_providers) writer.write_collection_of_object_values("languages", @languages) writer.write_collection_of_object_values("userAttributeAssignments", @user_attribute_assignments) writer.write_collection_of_object_values("userFlowIdentityProviders", @user_flow_identity_providers) end |
#user_attribute_assignments ⇒ Object
Gets the userAttributeAssignments property value. The user attribute assignments included in the user flow.
116 117 118 |
# File 'lib/models/b2x_identity_user_flow.rb', line 116 def user_attribute_assignments return @user_attribute_assignments end |
#user_attribute_assignments=(value) ⇒ Object
Sets the userAttributeAssignments property value. The user attribute assignments included in the user flow.
124 125 126 |
# File 'lib/models/b2x_identity_user_flow.rb', line 124 def user_attribute_assignments=(value) @user_attribute_assignments = value end |
#user_flow_identity_providers ⇒ Object
Gets the userFlowIdentityProviders property value. The userFlowIdentityProviders property
131 132 133 |
# File 'lib/models/b2x_identity_user_flow.rb', line 131 def user_flow_identity_providers return @user_flow_identity_providers end |
#user_flow_identity_providers=(value) ⇒ Object
Sets the userFlowIdentityProviders property value. The userFlowIdentityProviders property
139 140 141 |
# File 'lib/models/b2x_identity_user_flow.rb', line 139 def user_flow_identity_providers=(value) @user_flow_identity_providers = value end |