/** * 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. */ /** * * @export * @interface AccountBalancesInput */ export interface AccountBalancesInput { /** * Date in UTC Seconds * Leave empty if you wish to use payment account IDs instead * @type {string} * @memberof AccountBalancesInput */ updateDate?: string; /** * First payment account internal ID, starting from 12 * @type {number} * @memberof AccountBalancesInput */ internalAccountIdStart?: number; /** * Last payment account internal ID, starting from 12 * @type {number} * @memberof AccountBalancesInput */ internalAccountIdEnd?: number; } /** * Check if a given object implements the AccountBalancesInput interface. */ export declare function instanceOfAccountBalancesInput(value: object): boolean; export declare function AccountBalancesInputFromJSON(json: any): AccountBalancesInput; export declare function AccountBalancesInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountBalancesInput; export declare function AccountBalancesInputToJSON(value?: AccountBalancesInput | null): any;