class KeycloakAdmin::RealmRepresentation
Attributes
id[RW]
realm[RW]
Public Class Methods
from_hash(hash)
click to toggle source
TODO: Add more attributes
# File lib/keycloak-admin/representation/realm_representation.rb, line 7 def self.from_hash(hash) realm = new realm.id = hash["id"] realm.realm = hash["realm"] realm end