Class: KeycloakAdmin::IdentityProviderMapperRepresentation
- Inherits:
-
Representation
- Object
- Representation
- KeycloakAdmin::IdentityProviderMapperRepresentation
- Defined in:
- lib/keycloak-admin/representation/identity_provider_mapper_representation.rb
Instance Attribute Summary collapse
-
#config ⇒ Object
Returns the value of attribute config.
-
#id ⇒ Object
Returns the value of attribute id.
-
#identity_provider_alias ⇒ Object
Returns the value of attribute identity_provider_alias.
-
#identity_provider_mapper ⇒ Object
Returns the value of attribute identity_provider_mapper.
-
#name ⇒ Object
Returns the value of attribute name.
Class Method Summary collapse
Methods inherited from Representation
Methods included from CamelJson
Instance Attribute Details
#config ⇒ Object
Returns the value of attribute config.
3 4 5 |
# File 'lib/keycloak-admin/representation/identity_provider_mapper_representation.rb', line 3 def config @config end |
#id ⇒ Object
Returns the value of attribute id.
3 4 5 |
# File 'lib/keycloak-admin/representation/identity_provider_mapper_representation.rb', line 3 def id @id end |
#identity_provider_alias ⇒ Object
Returns the value of attribute identity_provider_alias.
3 4 5 |
# File 'lib/keycloak-admin/representation/identity_provider_mapper_representation.rb', line 3 def identity_provider_alias @identity_provider_alias end |
#identity_provider_mapper ⇒ Object
Returns the value of attribute identity_provider_mapper.
3 4 5 |
# File 'lib/keycloak-admin/representation/identity_provider_mapper_representation.rb', line 3 def identity_provider_mapper @identity_provider_mapper end |
#name ⇒ Object
Returns the value of attribute name.
3 4 5 |
# File 'lib/keycloak-admin/representation/identity_provider_mapper_representation.rb', line 3 def name @name end |
Class Method Details
.from_hash(hash) ⇒ Object
9 10 11 12 13 14 15 16 17 |
# File 'lib/keycloak-admin/representation/identity_provider_mapper_representation.rb', line 9 def self.from_hash(hash) client = new client.id = hash["id"] client.name = hash["name"] client.identity_provider_alias = hash["identityProviderAlias"] client.identity_provider_mapper = hash["identityProviderMapper"] client.config = hash["config"] client end |