src/well-known/dto/credential-issuer-metadata.dto.ts
Properties |
authorization_server |
Type : string
|
authorization_servers |
Type : string[]
|
batch_credential_issuance |
Type : literal type
|
credential_configurations_supported |
Type : any
|
credential_endpoint |
Type : string
|
credential_issuer |
Type : string
|
display |
Type : Array<any>
|
notification_endpoint |
Type : string
|
export class CredentialIssuerMetadataDto {
credential_issuer: string;
authorization_servers: string[];
credential_endpoint: string;
notification_endpoint: string;
batch_credential_issuance: {
batch_size: number;
};
display: Array<any>;
credential_configurations_supported: any;
authorization_server: string;
}