/** * 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 AccountCollectionUser */ export interface AccountCollectionUser { /** * * @type {string} * @memberof AccountCollectionUser */ id: string; /** * * @type {string} * @memberof AccountCollectionUser */ handle: string; /** * * @type {boolean} * @memberof AccountCollectionUser */ isDeactivated?: boolean; } /** * Check if a given object implements the AccountCollectionUser interface. */ export declare function instanceOfAccountCollectionUser(value: object): value is AccountCollectionUser; export declare function AccountCollectionUserFromJSON(json: any): AccountCollectionUser; export declare function AccountCollectionUserFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountCollectionUser; export declare function AccountCollectionUserToJSON(value?: AccountCollectionUser | null): any;