class KeycloakAdmin::ClientRepresentation

Attributes

client_id[RW]
id[RW]
name[RW]

Public Class Methods

from_hash(hash) click to toggle source

TODO: Add more attributes

# File lib/keycloak-admin/representation/client_representation.rb, line 8
def self.from_hash(hash)
  client           = new
  client.id        = hash["id"]
  client.name      = hash["name"]
  client.client_id = hash["clientId"]
  client
end