2
0
鏡像自 https://github.com/cderche/greenlock-storage-s3 synced 2025-07-05 15:46:31 +00:00
2019-05-08 11:43:08 +01:00

15 行
411 B
JavaScript

var property = require('../util').property;
function Paginator(name, paginator) {
property(this, 'inputToken', paginator.input_token);
property(this, 'limitKey', paginator.limit_key);
property(this, 'moreResults', paginator.more_results);
property(this, 'outputToken', paginator.output_token);
property(this, 'resultKey', paginator.result_key);
}
/**
* @api private
*/
module.exports = Paginator;