class KeycloakAdmin::GroupRepresentation

Attributes

id[RW]
name[RW]
path[RW]

Public Class Methods

from_hash(hash) click to toggle source
# File lib/keycloak-admin/representation/group_representation.rb, line 7
def self.from_hash(hash)
  group      = new
  group.id   = hash["id"]
  group.name = hash["name"]
  group.path = hash["path"]
  group
end