/** * 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 { TenantUploadAttributesSchema } from './TenantUploadAttributesSchema'; /** * * @export * @interface TenantUploadResourceSchema */ export interface TenantUploadResourceSchema { /** * * @type {TenantUploadResourceSchemaTypeEnum} * @memberof TenantUploadResourceSchema */ type?: TenantUploadResourceSchemaTypeEnum; /** * * @type {string} * @memberof TenantUploadResourceSchema */ id?: string; /** * * @type {TenantUploadAttributesSchema} * @memberof TenantUploadResourceSchema */ attributes?: TenantUploadAttributesSchema; } /** * @export */ export declare const TenantUploadResourceSchemaTypeEnum: { readonly TenantUploads: "tenant-uploads"; }; export type TenantUploadResourceSchemaTypeEnum = typeof TenantUploadResourceSchemaTypeEnum[keyof typeof TenantUploadResourceSchemaTypeEnum]; /** * Check if a given object implements the TenantUploadResourceSchema interface. */ export declare function instanceOfTenantUploadResourceSchema(value: object): value is TenantUploadResourceSchema; export declare function TenantUploadResourceSchemaFromJSON(json: any): TenantUploadResourceSchema; export declare function TenantUploadResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): TenantUploadResourceSchema; export declare function TenantUploadResourceSchemaToJSON(json: any): TenantUploadResourceSchema; export declare function TenantUploadResourceSchemaToJSONTyped(value?: TenantUploadResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TenantUploadResourceSchema.d.ts.map