/** * 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 { WebhookAttributesSchema } from './WebhookAttributesSchema'; import type { ResourceLinksSchema } from './ResourceLinksSchema'; /** * * @export * @interface WebhookResourceSchema */ export interface WebhookResourceSchema { /** * * @type {WebhookResourceSchemaTypeEnum} * @memberof WebhookResourceSchema */ type: WebhookResourceSchemaTypeEnum; /** * Returns results with an ID greater than the specified ID. The ID is a combination of a UUID4 (hexadecimal) followed by a hyphen and an integer number from 1 to 9. * @type {string} * @memberof WebhookResourceSchema */ id: string; /** * * @type {WebhookAttributesSchema} * @memberof WebhookResourceSchema */ attributes: WebhookAttributesSchema; /** * * @type {object} * @memberof WebhookResourceSchema */ relationships?: object; /** * * @type {ResourceLinksSchema} * @memberof WebhookResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof WebhookResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const WebhookResourceSchemaTypeEnum: { readonly Webhooks: "webhooks"; }; export type WebhookResourceSchemaTypeEnum = typeof WebhookResourceSchemaTypeEnum[keyof typeof WebhookResourceSchemaTypeEnum]; /** * Check if a given object implements the WebhookResourceSchema interface. */ export declare function instanceOfWebhookResourceSchema(value: object): value is WebhookResourceSchema; export declare function WebhookResourceSchemaFromJSON(json: any): WebhookResourceSchema; export declare function WebhookResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): WebhookResourceSchema; export declare function WebhookResourceSchemaToJSON(json: any): WebhookResourceSchema; export declare function WebhookResourceSchemaToJSONTyped(value?: WebhookResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=WebhookResourceSchema.d.ts.map