src/registrar/registrar-config.ts
RegistrarConfig class represents the configuration for the registrar service.
Properties |
|
Optional accessCertificateId |
Type : string
|
Defined in src/registrar/registrar-config.ts:12
|
ID of the access certificate. |
Optional id |
Type : string
|
Defined in src/registrar/registrar-config.ts:8
|
ID of the relying party. |
export class RegistrarConfig {
/**
* ID of the relying party.
*/
id?: string;
/**
* ID of the access certificate.
*/
accessCertificateId?: string;
}