/** * Audius API * * The version of the OpenAPI document: 1.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 UrlWithMirrors */ export interface UrlWithMirrors { /** * * @type {string} * @memberof UrlWithMirrors */ url?: string; /** * * @type {Array} * @memberof UrlWithMirrors */ mirrors: Array; } /** * Check if a given object implements the UrlWithMirrors interface. */ export declare function instanceOfUrlWithMirrors(value: object): value is UrlWithMirrors; export declare function UrlWithMirrorsFromJSON(json: any): UrlWithMirrors; export declare function UrlWithMirrorsFromJSONTyped(json: any, ignoreDiscriminator: boolean): UrlWithMirrors; export declare function UrlWithMirrorsToJSON(value?: UrlWithMirrors | null): any;