// This is Generated Source. import AuthProfileCheckResource from "../definitions/AuthProfileCheckResource"; import PathSegment from "../PathSegment"; export default class Check extends PathSegment { constructor(prv: PathSegment, id?: string, service?) { super("check", id, prv, service); } /** * */ get(query?: GetQuery): Promise { return this._send({ body: undefined, ignoreId: true, method: "get", query: query, }).then((res) => { return res.json(); }); } /** * * return {ApiResponse} */ getRaw(query?: GetQuery): Promise { return this._send({ body: undefined, ignoreId: true, method: "get", query: query, }); } } export interface GetQuery { /** * */ permissionId?: string; /** * */ targetExtensionId?: string; }