import type { CreationEntityState } from './CreationEntityState'; /** * * @export * @interface WebhookUrl */ export interface WebhookUrl { /** * The ID of the space this object belongs to. * @type {number} * @memberof WebhookUrl */ readonly linkedSpaceId?: number; /** * Whether the webhook URL is managed by the application, and therefore cannot be changed via the user interface. * @type {boolean} * @memberof WebhookUrl */ readonly applicationManaged?: boolean; /** * The name used to identify the webhook URL. * @type {string} * @memberof WebhookUrl */ readonly name?: string; /** * The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed. * @type {Date} * @memberof WebhookUrl */ readonly plannedPurgeDate?: Date; /** * A unique identifier for the object. * @type {number} * @memberof WebhookUrl */ readonly id?: number; /** * * @type {CreationEntityState} * @memberof WebhookUrl */ state?: CreationEntityState; /** * The version is used for optimistic locking and incremented whenever the object is updated. * @type {number} * @memberof WebhookUrl */ readonly version?: number; /** * The actual URL where notifications about entity changes are sent to. * @type {string} * @memberof WebhookUrl */ readonly url?: string; } /** * Check if a given object implements the WebhookUrl interface. */ export declare function instanceOfWebhookUrl(value: object): value is WebhookUrl; export declare function WebhookUrlFromJSON(json: any): WebhookUrl; export declare function WebhookUrlFromJSONTyped(json: any, ignoreDiscriminator: boolean): WebhookUrl; export declare function WebhookUrlToJSON(json: any): WebhookUrl; export declare function WebhookUrlToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any;