// This is Generated Source. import PathSegment from "../PathSegment"; export default class End extends PathSegment { constructor(prv: PathSegment, id?: string, service?) { super("end", id, prv, service); } /** * */ post(): Promise { return this._send({ body: undefined, ignoreId: true, method: "post", query: undefined, }); } /** * * return {ApiResponse} */ postRaw(): Promise { return this._send({ body: undefined, ignoreId: true, method: "post", query: undefined, }); } }