@openweb3-io/waas
Version:
WaaS API client and WaaS verification library
51 lines • 1.15 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CursorPageChain = void 0;
class CursorPageChain {
constructor() {
}
static getAttributeTypeMap() {
return CursorPageChain.attributeTypeMap;
}
}
exports.CursorPageChain = CursorPageChain;
CursorPageChain.discriminator = undefined;
CursorPageChain.attributeTypeMap = [
{
"name": "hasNext",
"baseName": "has_next",
"type": "boolean",
"format": ""
},
{
"name": "hasPrev",
"baseName": "has_prev",
"type": "boolean",
"format": ""
},
{
"name": "items",
"baseName": "items",
"type": "Array<Chain>",
"format": ""
},
{
"name": "nextCursor",
"baseName": "next_cursor",
"type": "string",
"format": ""
},
{
"name": "prevCursor",
"baseName": "prev_cursor",
"type": "string",
"format": ""
},
{
"name": "total",
"baseName": "total",
"type": "number",
"format": ""
}
];
//# sourceMappingURL=CursorPageChain.js.map