/** * 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 { AdRelationshipsJobSchema } from './AdRelationshipsJobSchema'; /** * * @export * @interface AdRelationshipsSchema */ export interface AdRelationshipsSchema { /** * * @type {AdRelationshipsJobSchema} * @memberof AdRelationshipsSchema */ job?: AdRelationshipsJobSchema; } /** * Check if a given object implements the AdRelationshipsSchema interface. */ export declare function instanceOfAdRelationshipsSchema(value: object): value is AdRelationshipsSchema; export declare function AdRelationshipsSchemaFromJSON(json: any): AdRelationshipsSchema; export declare function AdRelationshipsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): AdRelationshipsSchema; export declare function AdRelationshipsSchemaToJSON(json: any): AdRelationshipsSchema; export declare function AdRelationshipsSchemaToJSONTyped(value?: AdRelationshipsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AdRelationshipsSchema.d.ts.map