/** * 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 { WorkflowRelationshipsSchema } from './WorkflowRelationshipsSchema'; import type { ResourceLinksSchema } from './ResourceLinksSchema'; import type { WorkflowAttributesSchema } from './WorkflowAttributesSchema'; /** * * @export * @interface WorkflowResourceSchema */ export interface WorkflowResourceSchema { /** * * @type {WorkflowResourceSchemaTypeEnum} * @memberof WorkflowResourceSchema */ type: WorkflowResourceSchemaTypeEnum; /** * 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 WorkflowResourceSchema */ id: string; /** * * @type {WorkflowAttributesSchema} * @memberof WorkflowResourceSchema */ attributes: WorkflowAttributesSchema; /** * * @type {WorkflowRelationshipsSchema} * @memberof WorkflowResourceSchema */ relationships?: WorkflowRelationshipsSchema; /** * * @type {ResourceLinksSchema} * @memberof WorkflowResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof WorkflowResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const WorkflowResourceSchemaTypeEnum: { readonly Workflows: "workflows"; }; export type WorkflowResourceSchemaTypeEnum = typeof WorkflowResourceSchemaTypeEnum[keyof typeof WorkflowResourceSchemaTypeEnum]; /** * Check if a given object implements the WorkflowResourceSchema interface. */ export declare function instanceOfWorkflowResourceSchema(value: object): value is WorkflowResourceSchema; export declare function WorkflowResourceSchemaFromJSON(json: any): WorkflowResourceSchema; export declare function WorkflowResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): WorkflowResourceSchema; export declare function WorkflowResourceSchemaToJSON(json: any): WorkflowResourceSchema; export declare function WorkflowResourceSchemaToJSONTyped(value?: WorkflowResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=WorkflowResourceSchema.d.ts.map