You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SOP/sop-sdk/sdk-nodejs/request/StoryGetRequest.js

23 lines
548 B

const {Class} = require('../common/Class');
const {RequestType} = require('../common/RequestType');
const {BaseRequest} = require('./BaseRequest');
4 years ago
/**
* 创建一个请求类继承BaseRequest重写三个函数
*/
const StoryGetRequest = Class.create({
getMethod: function () {
return 'story.get';
4 years ago
},
getVersion: function () {
return '1.0';
4 years ago
},
getRequestType: function () {
return RequestType.GET;
4 years ago
}
}, BaseRequest); // 继承BaseRequest
4 years ago
module.exports.StoryGetRequest = StoryGetRequest;