/** * 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 { AdAttributesSchema } from './AdAttributesSchema'; import type { ResourceLinksSchema } from './ResourceLinksSchema'; import type { AdRelationshipsSchema } from './AdRelationshipsSchema'; /** * * @export * @interface AdResourceSchema */ export interface AdResourceSchema { /** * * @type {AdResourceSchemaTypeEnum} * @memberof AdResourceSchema */ type: AdResourceSchemaTypeEnum; /** * Returns results with an ID greater than the specified ID. The ID is a combination of a UUID4 (hexadecimal) followed by a hyphen and an integer number from 1 to 9. * @type {string} * @memberof AdResourceSchema */ id: string; /** * * @type {AdAttributesSchema} * @memberof AdResourceSchema */ attributes: AdAttributesSchema; /** * * @type {AdRelationshipsSchema} * @memberof AdResourceSchema */ relationships?: AdRelationshipsSchema; /** * * @type {ResourceLinksSchema} * @memberof AdResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof AdResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const AdResourceSchemaTypeEnum: { readonly Ads: "ads"; }; export type AdResourceSchemaTypeEnum = typeof AdResourceSchemaTypeEnum[keyof typeof AdResourceSchemaTypeEnum]; /** * Check if a given object implements the AdResourceSchema interface. */ export declare function instanceOfAdResourceSchema(value: object): value is AdResourceSchema; export declare function AdResourceSchemaFromJSON(json: any): AdResourceSchema; export declare function AdResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): AdResourceSchema; export declare function AdResourceSchemaToJSON(json: any): AdResourceSchema; export declare function AdResourceSchemaToJSONTyped(value?: AdResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AdResourceSchema.d.ts.map