/** * 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 CoverPhoto */ export interface CoverPhoto { /** * * @type {string} * @memberof CoverPhoto */ _640x?: string; /** * * @type {string} * @memberof CoverPhoto */ _2000x?: string; /** * * @type {Array} * @memberof CoverPhoto */ mirrors?: Array; } /** * Check if a given object implements the CoverPhoto interface. */ export declare function instanceOfCoverPhoto(value: object): value is CoverPhoto; export declare function CoverPhotoFromJSON(json: any): CoverPhoto; export declare function CoverPhotoFromJSONTyped(json: any, ignoreDiscriminator: boolean): CoverPhoto; export declare function CoverPhotoToJSON(value?: CoverPhoto | null): any;