/** * 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 { BriefRelationshipsUserSchema } from './BriefRelationshipsUserSchema'; import type { BriefRelationshipsJobSchema } from './BriefRelationshipsJobSchema'; /** * Declared in the WIRE shape: rows store plural keys with one entry, transform_all_relationships serialises them as to-one singular `job` / `user`. * @export * @interface BriefRelationshipsSchema */ export interface BriefRelationshipsSchema { /** * * @type {BriefRelationshipsJobSchema} * @memberof BriefRelationshipsSchema */ job?: BriefRelationshipsJobSchema; /** * * @type {BriefRelationshipsUserSchema} * @memberof BriefRelationshipsSchema */ user?: BriefRelationshipsUserSchema; } /** * Check if a given object implements the BriefRelationshipsSchema interface. */ export declare function instanceOfBriefRelationshipsSchema(value: object): value is BriefRelationshipsSchema; export declare function BriefRelationshipsSchemaFromJSON(json: any): BriefRelationshipsSchema; export declare function BriefRelationshipsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): BriefRelationshipsSchema; export declare function BriefRelationshipsSchemaToJSON(json: any): BriefRelationshipsSchema; export declare function BriefRelationshipsSchemaToJSONTyped(value?: BriefRelationshipsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=BriefRelationshipsSchema.d.ts.map