class KeycloakAdmin::FederatedIdentityRepresentation

Attributes

identity_provider[RW]
user_id[RW]
user_name[RW]

Public Class Methods

from_hash(hash) click to toggle source
# File lib/keycloak-admin/representation/federated_identity_representation.rb, line 7
def self.from_hash(hash)
  rep                   = new
  rep.identity_provider = hash['identityProvider']
  rep.user_id           = hash['userId']
  rep.user_name         = hash['userName']
  rep
end