/** * Fabric API * 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. */ import type { PresignedResponseHeaders } from './PresignedResponseHeaders'; /** * * @export * @interface PresignedResponse */ export interface PresignedResponse { /** * * @type {string} * @memberof PresignedResponse */ 'url': string; /** * * @type {PresignedResponseHeaders} * @memberof PresignedResponse */ 'headers': PresignedResponseHeaders; } /** * Check if a given object implements the PresignedResponse interface. */ export declare function instanceOfPresignedResponse(value: object): value is PresignedResponse; export declare function PresignedResponseFromJSON(json: any): PresignedResponse; export declare function PresignedResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PresignedResponse; export declare function PresignedResponseToJSON(json: any): PresignedResponse; export declare function PresignedResponseToJSONTyped(value?: PresignedResponse | null, ignoreDiscriminator?: boolean): any;