/** * 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 AlbumBacklink */ export interface AlbumBacklink { /** * * @type {number} * @memberof AlbumBacklink */ playlistId: number; /** * * @type {string} * @memberof AlbumBacklink */ playlistName: string; /** * * @type {string} * @memberof AlbumBacklink */ permalink: string; } /** * Check if a given object implements the AlbumBacklink interface. */ export declare function instanceOfAlbumBacklink(value: object): value is AlbumBacklink; export declare function AlbumBacklinkFromJSON(json: any): AlbumBacklink; export declare function AlbumBacklinkFromJSONTyped(json: any, ignoreDiscriminator: boolean): AlbumBacklink; export declare function AlbumBacklinkToJSON(value?: AlbumBacklink | null): any;