src/crypto/key/dto/key-response.dto.ts
Properties |
| keys |
Type : EC_Public[]
|
Decorators :
@ApiProperty({description: 'JSON Web Keys', type: undefined})
|
|
Defined in src/crypto/key/dto/key-response.dto.ts:6
|
import { EC_Public } from "../../../issuer/issuance/oid4vci/well-known/dto/jwks-response.dto";
import { ApiProperty } from "@nestjs/swagger";
export class KeyResponseDto {
@ApiProperty({ description: "JSON Web Keys", type: [Object] })
keys!: EC_Public[];
}