/** * 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. */ /** * * @export * @interface PresignedResponseHeadersAnyOf */ export interface PresignedResponseHeadersAnyOf { /** * * @type {string} * @memberof PresignedResponseHeadersAnyOf */ 'ETag'?: string | null; /** * * @type {string} * @memberof PresignedResponseHeadersAnyOf */ 'Content-Disposition'?: string | null; } /** * Check if a given object implements the PresignedResponseHeadersAnyOf interface. */ export declare function instanceOfPresignedResponseHeadersAnyOf(value: object): value is PresignedResponseHeadersAnyOf; export declare function PresignedResponseHeadersAnyOfFromJSON(json: any): PresignedResponseHeadersAnyOf; export declare function PresignedResponseHeadersAnyOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): PresignedResponseHeadersAnyOf; export declare function PresignedResponseHeadersAnyOfToJSON(json: any): PresignedResponseHeadersAnyOf; export declare function PresignedResponseHeadersAnyOfToJSONTyped(value?: PresignedResponseHeadersAnyOf | null, ignoreDiscriminator?: boolean): any;