/** * Lemonway DirectKit API 2.0 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * 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 { WalletDetailsInput } from './WalletDetailsInput'; /** * * @export * @interface AccountDetailsBatchInput */ export interface AccountDetailsBatchInput { /** * * @type {Array} * @memberof AccountDetailsBatchInput */ accounts: Array; } /** * Check if a given object implements the AccountDetailsBatchInput interface. */ export declare function instanceOfAccountDetailsBatchInput(value: object): boolean; export declare function AccountDetailsBatchInputFromJSON(json: any): AccountDetailsBatchInput; export declare function AccountDetailsBatchInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountDetailsBatchInput; export declare function AccountDetailsBatchInputToJSON(value?: AccountDetailsBatchInput | null): any;