UNPKG

wallee

Version:
29 lines (28 loc) 678 B
declare class WebhookListenerEntity { /** * A unique identifier for the object. */ 'id'?: number; /** * The name used to identify the webhook listener entity. */ 'name'?: { [key: string]: string; }; /** * The name used to programmatically identify the webhook listener entity. */ 'technicalName'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export { WebhookListenerEntity };