UNPKG

@cotofe/service-of-system

Version:

OpenAPI client for @cotofe/service-of-system

39 lines (38 loc) 1.31 kB
/** * Platform * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * MultipartPresignedUrl * @export * @interface MultipartPresignedUrl */ export interface MultipartPresignedUrl { /** * * @type {string} * @memberof MultipartPresignedUrl */ uploadId?: string; /** * * @type {Array<string>} * @memberof MultipartPresignedUrl */ urls?: Array<string>; } /** * Check if a given object implements the MultipartPresignedUrl interface. */ export declare function instanceOfMultipartPresignedUrl(value: object): value is MultipartPresignedUrl; export declare function MultipartPresignedUrlFromJSON(json: any): MultipartPresignedUrl; export declare function MultipartPresignedUrlFromJSONTyped(json: any, ignoreDiscriminator: boolean): MultipartPresignedUrl; export declare function MultipartPresignedUrlToJSON(json: any): MultipartPresignedUrl; export declare function MultipartPresignedUrlToJSONTyped(value?: MultipartPresignedUrl | null, ignoreDiscriminator?: boolean): any;