src/registrar/dto/access-certificate-response.ts
Repsonse of access certificate request.
Properties |
crt |
crt:
|
Type : string
|
The public key in PEM format. |
id |
id:
|
Type : string
|
Unique identifier of the access certificate. |
revoked |
revoked:
|
Type : boolean
|
Optional |
Indicates if the access certificate is revoked. |
export interface AccessCertificateResponse {
/**
* Unique identifier of the access certificate.
*/
id: string;
/**
* The public key in PEM format.
*/
crt: string;
/**
* Indicates if the access certificate is revoked.
*/
revoked?: boolean;
}