/** * 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. */ /** * * @export * @interface TenantUploadAttributesSchema */ export interface TenantUploadAttributesSchema { /** * * @type {string} * @memberof TenantUploadAttributesSchema */ uploadUrl?: string; /** * * @type {string} * @memberof TenantUploadAttributesSchema */ s3Key?: string; /** * * @type {string} * @memberof TenantUploadAttributesSchema */ url?: string; /** * * @type {string} * @memberof TenantUploadAttributesSchema */ contentType?: string; /** * * @type {TenantUploadAttributesSchemaPurposeEnum} * @memberof TenantUploadAttributesSchema */ purpose?: TenantUploadAttributesSchemaPurposeEnum; /** * * @type {number} * @memberof TenantUploadAttributesSchema */ expiresIn?: number; /** * Maximum file size in bytes * @type {number} * @memberof TenantUploadAttributesSchema */ maxFileSize?: number; } /** * @export */ export declare const TenantUploadAttributesSchemaPurposeEnum: { readonly Logo: "logo"; readonly Background: "background"; readonly Favicon: "favicon"; readonly Careers: "careers"; }; export type TenantUploadAttributesSchemaPurposeEnum = typeof TenantUploadAttributesSchemaPurposeEnum[keyof typeof TenantUploadAttributesSchemaPurposeEnum]; /** * Check if a given object implements the TenantUploadAttributesSchema interface. */ export declare function instanceOfTenantUploadAttributesSchema(value: object): value is TenantUploadAttributesSchema; export declare function TenantUploadAttributesSchemaFromJSON(json: any): TenantUploadAttributesSchema; export declare function TenantUploadAttributesSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): TenantUploadAttributesSchema; export declare function TenantUploadAttributesSchemaToJSON(json: any): TenantUploadAttributesSchema; export declare function TenantUploadAttributesSchemaToJSONTyped(value?: TenantUploadAttributesSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TenantUploadAttributesSchema.d.ts.map