/** * 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 { EmailAttributesSchema } from './EmailAttributesSchema'; import type { ResourceLinksSchema } from './ResourceLinksSchema'; import type { EmailRelationshipsSchema } from './EmailRelationshipsSchema'; /** * * @export * @interface EmailResourceSchema */ export interface EmailResourceSchema { /** * * @type {EmailResourceSchemaTypeEnum} * @memberof EmailResourceSchema */ type: EmailResourceSchemaTypeEnum; /** * 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 EmailResourceSchema */ id: string; /** * * @type {EmailAttributesSchema} * @memberof EmailResourceSchema */ attributes: EmailAttributesSchema; /** * * @type {EmailRelationshipsSchema} * @memberof EmailResourceSchema */ relationships?: EmailRelationshipsSchema; /** * * @type {ResourceLinksSchema} * @memberof EmailResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof EmailResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const EmailResourceSchemaTypeEnum: { readonly Emails: "emails"; }; export type EmailResourceSchemaTypeEnum = typeof EmailResourceSchemaTypeEnum[keyof typeof EmailResourceSchemaTypeEnum]; /** * Check if a given object implements the EmailResourceSchema interface. */ export declare function instanceOfEmailResourceSchema(value: object): value is EmailResourceSchema; export declare function EmailResourceSchemaFromJSON(json: any): EmailResourceSchema; export declare function EmailResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmailResourceSchema; export declare function EmailResourceSchemaToJSON(json: any): EmailResourceSchema; export declare function EmailResourceSchemaToJSONTyped(value?: EmailResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=EmailResourceSchema.d.ts.map