/** * 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. */ import type { AccountCollectionUser } from './AccountCollectionUser'; /** * * @export * @interface AccountCollection */ export interface AccountCollection { /** * * @type {string} * @memberof AccountCollection */ id: string; /** * * @type {boolean} * @memberof AccountCollection */ isAlbum: boolean; /** * * @type {string} * @memberof AccountCollection */ name: string; /** * * @type {string} * @memberof AccountCollection */ permalink: string; /** * * @type {AccountCollectionUser} * @memberof AccountCollection */ user: AccountCollectionUser; } /** * Check if a given object implements the AccountCollection interface. */ export declare function instanceOfAccountCollection(value: object): value is AccountCollection; export declare function AccountCollectionFromJSON(json: any): AccountCollection; export declare function AccountCollectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountCollection; export declare function AccountCollectionToJSON(value?: AccountCollection | null): any;