UNPKG

wallee

Version:
36 lines (35 loc) 992 B
import { CreationEntityState } from "./CreationEntityState"; declare class AbstractWebhookListenerUpdate { /** * Whether signature header and 'state' property are enabled in webhook payload. */ 'enablePayloadSignatureAndState'?: boolean; /** * The entity's target states that are to be monitored. */ 'entityStates'?: Array<string>; /** * The name used to identify the webhook listener. */ 'name'?: string; /** * Whether every update of the entity or only state changes are to be monitored. */ 'notifyEveryChange'?: boolean; /** * The object's current state. */ 'state'?: CreationEntityState; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export { AbstractWebhookListenerUpdate };