mint_beach_js
Version:
A JavaScript SDK used to interact with the Mint Beach API.
15 lines (12 loc) • 314 B
JavaScript
//Local Imports
const resourceModel = require("./../models/resourceModel");
/** Class representing the tenants resource in the API. */
class Tenants extends resourceModel {
/**
* Create a resource for the /tenants API endpoints.
*/
constructor() {
super("tenants");
}
}
module.exports = Tenants;