UNPKG

@bluvo/sdk-ts

Version:

Bluvo SDK for TypeScript

73 lines (65 loc) 1.72 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 { HttpFile } from '../http/http'; /** * Pagination information */ export class ListTransactions200ResponsePagination { /** * Total number of transactions matching the filter criteria */ 'totalCount': number; /** * Current page number */ 'page': number; /** * Maximum number of transactions per page */ 'limit': number; /** * Total number of pages */ 'pageCount': number; 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": "totalCount", "baseName": "totalCount", "type": "number", "format": "" }, { "name": "page", "baseName": "page", "type": "number", "format": "" }, { "name": "limit", "baseName": "limit", "type": "number", "format": "" }, { "name": "pageCount", "baseName": "pageCount", "type": "number", "format": "" } ]; static getAttributeTypeMap() { return ListTransactions200ResponsePagination.attributeTypeMap; } public constructor() { } }