/**
 * 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 ListWallets200ResponsePagination {
    /**
    * Total number of wallets matching the filter criteria
    */
    'totalCount': number;
    /**
    * Current page number
    */
    'page': number;
    /**
    * Maximum number of wallets 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 ListWallets200ResponsePagination.attributeTypeMap;
    }

    public constructor() {
    }
}
