UNPKG

@cotofe/service-of-system

Version:

OpenAPI client for @cotofe/service-of-system

39 lines (38 loc) 1.16 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. */ /** * PresignedUrl * @export * @interface PresignedUrl */ export interface PresignedUrl { /** * * @type {string} * @memberof PresignedUrl */ downloadUrl?: string; /** * * @type {string} * @memberof PresignedUrl */ uploadUrl?: string; } /** * Check if a given object implements the PresignedUrl interface. */ export declare function instanceOfPresignedUrl(value: object): value is PresignedUrl; export declare function PresignedUrlFromJSON(json: any): PresignedUrl; export declare function PresignedUrlFromJSONTyped(json: any, ignoreDiscriminator: boolean): PresignedUrl; export declare function PresignedUrlToJSON(json: any): PresignedUrl; export declare function PresignedUrlToJSONTyped(value?: PresignedUrl | null, ignoreDiscriminator?: boolean): any;