UNPKG

wallee

Version:
23 lines (22 loc) 502 B
declare class WebhookEncryptionPublicKey { /** * The ID of encryption key */ 'id'?: string; /** * The BASE64 encoded public key */ 'publicKey'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export { WebhookEncryptionPublicKey };