// This is Generated Source. import EditGroupRequest from "../definitions/EditGroupRequest"; import GlipGroupInfo from "../definitions/GlipGroupInfo"; import PathSegment from "../PathSegment"; export default class BulkAssign extends PathSegment { constructor(prv: PathSegment, id?: string, service?) { super("bulk-assign", id, prv, service); } /** *

Since 1.0.28 (Release 8.4)

Updates group members. Please note: Only groups of 'Team' type can be updated. Currently only one operation at a time (either adding or removal) is supported.

Required Permissions

PermissionDescription
GlipAvailability of Glip

API Group

Medium

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

Since 1.0.28 (Release 8.4)

Updates group members. Please note: Only groups of 'Team' type can be updated. Currently only one operation at a time (either adding or removal) is supported.

Required Permissions

PermissionDescription
GlipAvailability of Glip

API Group

Medium

* return {ApiResponse} */ postRaw(body: EditGroupRequest): Promise { return this._send({ body: body, ignoreId: true, method: "post", query: undefined, }); } }