/** * 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. */ /** * * @export * @interface ResourcesLinksSchema */ export interface ResourcesLinksSchema { /** * * @type {string} * @memberof ResourcesLinksSchema */ self?: string; /** * * @type {string} * @memberof ResourcesLinksSchema */ related?: string; /** * * @type {string} * @memberof ResourcesLinksSchema */ first?: string; /** * * @type {string} * @memberof ResourcesLinksSchema */ prev?: string; /** * * @type {string} * @memberof ResourcesLinksSchema */ next?: string; /** * * @type {string} * @memberof ResourcesLinksSchema */ last?: string; } /** * Check if a given object implements the ResourcesLinksSchema interface. */ export declare function instanceOfResourcesLinksSchema(value: object): value is ResourcesLinksSchema; export declare function ResourcesLinksSchemaFromJSON(json: any): ResourcesLinksSchema; export declare function ResourcesLinksSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResourcesLinksSchema; export declare function ResourcesLinksSchemaToJSON(json: any): ResourcesLinksSchema; export declare function ResourcesLinksSchemaToJSONTyped(value?: ResourcesLinksSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ResourcesLinksSchema.d.ts.map