/** * 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 { Account } from './Account'; /** * * @export * @interface UserAccountResponse */ export interface UserAccountResponse { /** * * @type {Account} * @memberof UserAccountResponse */ data?: Account; } /** * Check if a given object implements the UserAccountResponse interface. */ export declare function instanceOfUserAccountResponse(value: object): value is UserAccountResponse; export declare function UserAccountResponseFromJSON(json: any): UserAccountResponse; export declare function UserAccountResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserAccountResponse; export declare function UserAccountResponseToJSON(value?: UserAccountResponse | null): any;