10 lines
227 B
TypeScript
10 lines
227 B
TypeScript
|
/**
|
||
|
* https://www.keycloak.org/docs-api/11.0/rest-api/#_certificaterepresentation
|
||
|
*/
|
||
|
export default interface CertificateRepresentation {
|
||
|
privateKey?: string;
|
||
|
publicKey?: string;
|
||
|
certificate?: string;
|
||
|
kid?: string;
|
||
|
}
|