/** * 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 { CallAttributesSchema } from './CallAttributesSchema'; import type { CallMetaSchema } from './CallMetaSchema'; import type { ResourceLinksSchema } from './ResourceLinksSchema'; import type { CallRelationshipsSchema } from './CallRelationshipsSchema'; /** * * @export * @interface CallResourceSchema */ export interface CallResourceSchema { /** * * @type {CallResourceSchemaTypeEnum} * @memberof CallResourceSchema */ type: CallResourceSchemaTypeEnum; /** * 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 CallResourceSchema */ id: string; /** * * @type {CallAttributesSchema} * @memberof CallResourceSchema */ attributes: CallAttributesSchema; /** * * @type {CallRelationshipsSchema} * @memberof CallResourceSchema */ relationships?: CallRelationshipsSchema; /** * * @type {ResourceLinksSchema} * @memberof CallResourceSchema */ links?: ResourceLinksSchema; /** * * @type {CallMetaSchema} * @memberof CallResourceSchema */ meta?: CallMetaSchema; } /** * @export */ export declare const CallResourceSchemaTypeEnum: { readonly Calls: "calls"; }; export type CallResourceSchemaTypeEnum = typeof CallResourceSchemaTypeEnum[keyof typeof CallResourceSchemaTypeEnum]; /** * Check if a given object implements the CallResourceSchema interface. */ export declare function instanceOfCallResourceSchema(value: object): value is CallResourceSchema; export declare function CallResourceSchemaFromJSON(json: any): CallResourceSchema; export declare function CallResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): CallResourceSchema; export declare function CallResourceSchemaToJSON(json: any): CallResourceSchema; export declare function CallResourceSchemaToJSONTyped(value?: CallResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CallResourceSchema.d.ts.map