/** * 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 ConnectedWallets */ export interface ConnectedWallets { /** * * @type {Array} * @memberof ConnectedWallets */ ercWallets: Array; /** * * @type {Array} * @memberof ConnectedWallets */ splWallets: Array; } /** * Check if a given object implements the ConnectedWallets interface. */ export declare function instanceOfConnectedWallets(value: object): value is ConnectedWallets; export declare function ConnectedWalletsFromJSON(json: any): ConnectedWallets; export declare function ConnectedWalletsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConnectedWallets; export declare function ConnectedWalletsToJSON(value?: ConnectedWallets | null): any;