UNPKG

@bluvo/sdk-ts

Version:

Bluvo SDK for TypeScript

49 lines (41 loc) 1.49 kB
/** * Bluvo API * APIs to supercharge your crypto project. * * OpenAPI spec version: 0.0.3 * Contact: help@bluvo.co * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { ListWallets200ResponsePagination } from '../models/ListWallets200ResponsePagination'; import { ListWallets200ResponseWalletsInner } from '../models/ListWallets200ResponseWalletsInner'; import { HttpFile } from '../http/http'; export class ListWallets200Response { /** * List of wallets matching the filter criteria */ 'wallets': Array<ListWallets200ResponseWalletsInner>; 'pagination': ListWallets200ResponsePagination; static readonly discriminator: string | undefined = undefined; static readonly mapping: {[index: string]: string} | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "wallets", "baseName": "wallets", "type": "Array<ListWallets200ResponseWalletsInner>", "format": "" }, { "name": "pagination", "baseName": "pagination", "type": "ListWallets200ResponsePagination", "format": "" } ]; static getAttributeTypeMap() { return ListWallets200Response.attributeTypeMap; } public constructor() { } }