/** * 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. */ import { WalletTransaction } from './WalletTransaction'; /** * * @export * @interface WalletTransactionsResponse */ export interface WalletTransactionsResponse { /** * List of wallet transactions * @type {Array} * @memberof WalletTransactionsResponse */ transactions: Array; /** * Offset to the next page of transactions * @type {string} * @memberof WalletTransactionsResponse */ nextOffset?: string; } export declare function WalletTransactionsResponseFromJSON(json: any): WalletTransactionsResponse; export declare function WalletTransactionsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): WalletTransactionsResponse; export declare function WalletTransactionsResponseToJSON(value?: WalletTransactionsResponse | null): any;