/** * 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 UserUploadAttributesSchema */ export interface UserUploadAttributesSchema { /** * * @type {string} * @memberof UserUploadAttributesSchema */ uploadUrl?: string; /** * * @type {string} * @memberof UserUploadAttributesSchema */ s3Key?: string; /** * * @type {string} * @memberof UserUploadAttributesSchema */ url?: string; /** * * @type {string} * @memberof UserUploadAttributesSchema */ contentType?: string; /** * * @type {UserUploadAttributesSchemaPurposeEnum} * @memberof UserUploadAttributesSchema */ purpose?: UserUploadAttributesSchemaPurposeEnum; /** * * @type {number} * @memberof UserUploadAttributesSchema */ expiresIn?: number; /** * Maximum file size in bytes * @type {number} * @memberof UserUploadAttributesSchema */ maxFileSize?: number; } /** * @export */ export declare const UserUploadAttributesSchemaPurposeEnum: { readonly Avatar: "avatar"; }; export type UserUploadAttributesSchemaPurposeEnum = typeof UserUploadAttributesSchemaPurposeEnum[keyof typeof UserUploadAttributesSchemaPurposeEnum]; /** * Check if a given object implements the UserUploadAttributesSchema interface. */ export declare function instanceOfUserUploadAttributesSchema(value: object): value is UserUploadAttributesSchema; export declare function UserUploadAttributesSchemaFromJSON(json: any): UserUploadAttributesSchema; export declare function UserUploadAttributesSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserUploadAttributesSchema; export declare function UserUploadAttributesSchemaToJSON(json: any): UserUploadAttributesSchema; export declare function UserUploadAttributesSchemaToJSONTyped(value?: UserUploadAttributesSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UserUploadAttributesSchema.d.ts.map