// This is Generated Source. import ILicenseTypes from "../definitions/LicenseTypes"; import PathSegment from "../PathSegment"; export default class LicenseTypes extends PathSegment { constructor(prv: PathSegment, id?: string, service?) { super("license-types", id, prv, service); } /** *

Since 1.0.31 (Release 9.2)

Returns supported license types.

API Group

Light

*/ list(): Promise { return this._send({ body: undefined, ignoreId: false, method: "get", query: undefined, }).then((res) => { return res.json(); }); } /** *

Since 1.0.31 (Release 9.2)

Returns supported license types.

API Group

Light

* return {ApiResponse} */ listRaw(): Promise { return this._send({ body: undefined, ignoreId: false, method: "get", query: undefined, }); } }