wallee
Version:
TypeScript/JavaScript client for wallee
29 lines (28 loc) • 678 B
TypeScript
declare class WebhookListenerEntity {
/**
* A unique identifier for the object.
*/
'id'?: number;
/**
* The name used to identify the webhook listener entity.
*/
'name'?: {
[]: 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 };