/** * SmartyMeet Dev03 API REST * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.1 * Contact: developer@smartymeet.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { ResourceTimestampsSchema } from './ResourceTimestampsSchema'; /** * * @export * @interface WebhookAttributesSchema */ export interface WebhookAttributesSchema { /** * * @type {string} * @memberof WebhookAttributesSchema */ name: string; /** * * @type {string} * @memberof WebhookAttributesSchema */ status?: string; /** * * @type {ResourceTimestampsSchema} * @memberof WebhookAttributesSchema */ timestamps?: ResourceTimestampsSchema; } /** * Check if a given object implements the WebhookAttributesSchema interface. */ export declare function instanceOfWebhookAttributesSchema(value: object): value is WebhookAttributesSchema; export declare function WebhookAttributesSchemaFromJSON(json: any): WebhookAttributesSchema; export declare function WebhookAttributesSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): WebhookAttributesSchema; export declare function WebhookAttributesSchemaToJSON(json: any): WebhookAttributesSchema; export declare function WebhookAttributesSchemaToJSONTyped(value?: WebhookAttributesSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=WebhookAttributesSchema.d.ts.map