import type { CreationEntityState } from './CreationEntityState'; /** * * @export * @interface WebhookUrlCreate */ export interface WebhookUrlCreate { /** * The name used to identify the webhook URL. * @type {string} * @memberof WebhookUrlCreate */ name?: string; /** * * @type {CreationEntityState} * @memberof WebhookUrlCreate */ state?: CreationEntityState; /** * The actual URL where notifications about entity changes are sent to. * @type {string} * @memberof WebhookUrlCreate */ url?: string; } /** * Check if a given object implements the WebhookUrlCreate interface. */ export declare function instanceOfWebhookUrlCreate(value: object): value is WebhookUrlCreate; export declare function WebhookUrlCreateFromJSON(json: any): WebhookUrlCreate; export declare function WebhookUrlCreateFromJSONTyped(json: any, ignoreDiscriminator: boolean): WebhookUrlCreate; export declare function WebhookUrlCreateToJSON(json: any): WebhookUrlCreate; export declare function WebhookUrlCreateToJSONTyped(value?: WebhookUrlCreate | null, ignoreDiscriminator?: boolean): any;