/** * 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 WalletDetailsInput */ export interface WalletDetailsInput { /** * * @type {string} * @memberof WalletDetailsInput */ accountid?: string; /** * * @type {string} * @memberof WalletDetailsInput */ email?: string; } /** * Check if a given object implements the WalletDetailsInput interface. */ export declare function instanceOfWalletDetailsInput(value: object): boolean; export declare function WalletDetailsInputFromJSON(json: any): WalletDetailsInput; export declare function WalletDetailsInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): WalletDetailsInput; export declare function WalletDetailsInputToJSON(value?: WalletDetailsInput | null): any;