/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * A fully resolvable presigned URL that can be used to download the object bytes without any authentication.As presigned url has tokens included, which expires with time * @export * @interface AccessUrl */ export interface AccessUrl { /** * A fully resolvable URL that can be used to fetch the actual object bytes * @type {string} * @memberof AccessUrl */ url?: string; } /** * Check if a given object implements the AccessUrl interface. */ export declare function instanceOfAccessUrl(value: object): value is AccessUrl; export declare function AccessUrlFromJSON(json: any): AccessUrl; export declare function AccessUrlFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccessUrl; export declare function AccessUrlToJSON(json: any): AccessUrl; export declare function AccessUrlToJSONTyped(value?: AccessUrl | null, ignoreDiscriminator?: boolean): any;