/** * 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 ProfilePicture */ export interface ProfilePicture { /** * * @type {string} * @memberof ProfilePicture */ _150x150?: string; /** * * @type {string} * @memberof ProfilePicture */ _480x480?: string; /** * * @type {string} * @memberof ProfilePicture */ _1000x1000?: string; /** * * @type {Array} * @memberof ProfilePicture */ mirrors?: Array; } /** * Check if a given object implements the ProfilePicture interface. */ export declare function instanceOfProfilePicture(value: object): value is ProfilePicture; export declare function ProfilePictureFromJSON(json: any): ProfilePicture; export declare function ProfilePictureFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProfilePicture; export declare function ProfilePictureToJSON(value?: ProfilePicture | null): any;