1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
const utils = require("../utils"); /** * @property {String} trigger * @property {String} body * @property {String} created_by * @property {String} created_at */ class Snippet { constructor(props) { utils.setDataModelProps(this, props); } } module.exports = Snippet;