UNPKG

@plattar/plattar-api

Version:

Module for interfacing with the Plattar API (https://www.plattar.com)

13 lines (10 loc) 272 B
const PlattarBase = require("../interfaces/plattar-base.js"); class AsyncJob extends PlattarBase { static type() { return "asyncjob"; } set accessKey(code) { this.addParameter("access_key", code, "update"); } } module.exports = AsyncJob;