/** * 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 { ResourceLinksSchema } from './ResourceLinksSchema'; import type { SignalAttributesSchema } from './SignalAttributesSchema'; /** * * @export * @interface SignalResourceSchema */ export interface SignalResourceSchema { /** * * @type {SignalResourceSchemaTypeEnum} * @memberof SignalResourceSchema */ type: SignalResourceSchemaTypeEnum; /** * 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 SignalResourceSchema */ id: string; /** * * @type {SignalAttributesSchema} * @memberof SignalResourceSchema */ attributes: SignalAttributesSchema; /** * * @type {object} * @memberof SignalResourceSchema */ relationships?: object; /** * * @type {ResourceLinksSchema} * @memberof SignalResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof SignalResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const SignalResourceSchemaTypeEnum: { readonly Signals: "signals"; }; export type SignalResourceSchemaTypeEnum = typeof SignalResourceSchemaTypeEnum[keyof typeof SignalResourceSchemaTypeEnum]; /** * Check if a given object implements the SignalResourceSchema interface. */ export declare function instanceOfSignalResourceSchema(value: object): value is SignalResourceSchema; export declare function SignalResourceSchemaFromJSON(json: any): SignalResourceSchema; export declare function SignalResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): SignalResourceSchema; export declare function SignalResourceSchemaToJSON(json: any): SignalResourceSchema; export declare function SignalResourceSchemaToJSONTyped(value?: SignalResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SignalResourceSchema.d.ts.map