/** * 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 { SurveyAttributesSchema } from './SurveyAttributesSchema'; /** * * @export * @interface SurveyResourceSchema */ export interface SurveyResourceSchema { /** * * @type {SurveyResourceSchemaTypeEnum} * @memberof SurveyResourceSchema */ type: SurveyResourceSchemaTypeEnum; /** * 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 SurveyResourceSchema */ id: string; /** * * @type {SurveyAttributesSchema} * @memberof SurveyResourceSchema */ attributes: SurveyAttributesSchema; /** * * @type {object} * @memberof SurveyResourceSchema */ relationships?: object; /** * * @type {ResourceLinksSchema} * @memberof SurveyResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof SurveyResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const SurveyResourceSchemaTypeEnum: { readonly Surveys: "surveys"; }; export type SurveyResourceSchemaTypeEnum = typeof SurveyResourceSchemaTypeEnum[keyof typeof SurveyResourceSchemaTypeEnum]; /** * Check if a given object implements the SurveyResourceSchema interface. */ export declare function instanceOfSurveyResourceSchema(value: object): value is SurveyResourceSchema; export declare function SurveyResourceSchemaFromJSON(json: any): SurveyResourceSchema; export declare function SurveyResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): SurveyResourceSchema; export declare function SurveyResourceSchemaToJSON(json: any): SurveyResourceSchema; export declare function SurveyResourceSchemaToJSONTyped(value?: SurveyResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SurveyResourceSchema.d.ts.map