/** * 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 ResourceRelationshipsLinksSchema */ export interface ResourceRelationshipsLinksSchema { /** * The "self" member is used to define the URL link to the resource. * The value of the "self" member must be a URL that adheres to the following format: * `https://api.smartymeet.com/{version}/{resource}/`. The version part should be in the format `v{digit}` (e.g., `v1`, `v2`), * and the resource part should be an English word in its plural form. * The "self" member is required for providing a link to the resource object being represented in the API. * @type {string} * @memberof ResourceRelationshipsLinksSchema */ self?: string; /** * * @type {string} * @memberof ResourceRelationshipsLinksSchema */ related?: string; } /** * Check if a given object implements the ResourceRelationshipsLinksSchema interface. */ export declare function instanceOfResourceRelationshipsLinksSchema(value: object): value is ResourceRelationshipsLinksSchema; export declare function ResourceRelationshipsLinksSchemaFromJSON(json: any): ResourceRelationshipsLinksSchema; export declare function ResourceRelationshipsLinksSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResourceRelationshipsLinksSchema; export declare function ResourceRelationshipsLinksSchemaToJSON(json: any): ResourceRelationshipsLinksSchema; export declare function ResourceRelationshipsLinksSchemaToJSONTyped(value?: ResourceRelationshipsLinksSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ResourceRelationshipsLinksSchema.d.ts.map