/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.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 UserWalletSelectionRequest */ export interface UserWalletSelectionRequest { /** * UUID v4 with an optional suffix (e.g., uuid-zerodev) * @type {string} * @memberof UserWalletSelectionRequest */ walletId: string; } export declare function UserWalletSelectionRequestFromJSON(json: any): UserWalletSelectionRequest; export declare function UserWalletSelectionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserWalletSelectionRequest; export declare function UserWalletSelectionRequestToJSON(value?: UserWalletSelectionRequest | null): any;