UNIVPLMDataIntegration/Web/src/api-services/models/upload-file-from-base64-input.ts

71 lines
1.7 KiB
TypeScript
Raw Normal View History

2024-06-15 13:02:35 +08:00
/* tslint:disable */
/* eslint-disable */
/**
* Admin.NET
* .NET <br/><u><b><font color='FF0000'> 👮</font></b></u>
*
* OpenAPI spec version: 1.0.0
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
/**
*
*
* @export
* @interface UploadFileFromBase64Input
*/
export interface UploadFileFromBase64Input {
/**
*
*
* @type {string}
* @memberof UploadFileFromBase64Input
*/
fileDataBase64?: string | null;
/**
* ( \"image/jpeg\",)
*
* @type {string}
* @memberof UploadFileFromBase64Input
*/
contentType?: string | null;
/**
*
*
* @type {string}
* @memberof UploadFileFromBase64Input
*/
fileName?: string | null;
/**
*
*
* @type {string}
* @memberof UploadFileFromBase64Input
*/
path?: string | null;
/**
*
*
* @type {string}
* @memberof UploadFileFromBase64Input
*/
fileType?: string | null;
/**
* true
*
* @type {boolean}
* @memberof UploadFileFromBase64Input
*/
isPublic?: boolean;
2024-06-15 13:02:35 +08:00
}