9 lines
327 B
TypeScript
9 lines
327 B
TypeScript
import type ClientProfileRepresentation from "./clientProfileRepresentation.js";
|
|
/**
|
|
* https://www.keycloak.org/docs-api/15.0/rest-api/#_clientprofilesrepresentation
|
|
*/
|
|
export default interface ClientProfilesRepresentation {
|
|
globalProfiles?: ClientProfileRepresentation[];
|
|
profiles?: ClientProfileRepresentation[];
|
|
}
|