UNPKG

expresscheckout-nodejs-sdk

Version:
25 lines (23 loc) 402 B
/** * Class JuspayEntityList * * @property array list * @property int count * @property int offset * @property int total * * @package Juspay\Model */ export class JuspayEntityList { /** * Constructor * * @param array params */ constructor(params) { this.count = params.count; this.offset = params.offset; this.total = params.total; this.list = Array(); } };