gizmovsky
Version:
Unofficial SDK for Gizmo API
14 lines (12 loc) • 454 B
JavaScript
import { GizmoClient } from '../GizmoClient.js';
export class ApplicationEnterprises {
constructor(client) {
this.client = client;
}
getApplicationenterprises(params = {}) {
return this.client.request('get', '/v3.0/applicationenterprises', {}, params);
}
getApplicationenterpriseById(id, params = {}) {
return this.client.request('get', `/v3.0/applicationenterprises/${id}`, {}, params);
}
}