/** * 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 { AdResourceSchema } from './AdResourceSchema'; /** * * @export * @interface AdSchema */ export interface AdSchema { /** * * @type {AdResourceSchema} * @memberof AdSchema */ data?: AdResourceSchema; /** * * @type {ResourceLinksSchema} * @memberof AdSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof AdSchema */ meta?: { [key: string]: any; }; } /** * Check if a given object implements the AdSchema interface. */ export declare function instanceOfAdSchema(value: object): value is AdSchema; export declare function AdSchemaFromJSON(json: any): AdSchema; export declare function AdSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): AdSchema; export declare function AdSchemaToJSON(json: any): AdSchema; export declare function AdSchemaToJSONTyped(value?: AdSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AdSchema.d.ts.map