// This is Generated Source. import GlipCreatePost from "../definitions/GlipCreatePost"; import GlipPostInfo from "../definitions/GlipPostInfo"; import GlipPosts from "../definitions/GlipPosts"; import PathSegment from "../PathSegment"; export default class Posts extends PathSegment { constructor(prv: PathSegment, id?: string, service?) { super("posts", id, prv, service); } /** *
Since 1.0.28 (Release 8.4)
Returns list of posts.
| Permission | Description |
|---|---|
| Glip | Availability of Glip |
Light
*/ list(query?: ListQuery): PromiseSince 1.0.28 (Release 8.4)
Returns list of posts.
| Permission | Description |
|---|---|
| Glip | Availability of Glip |
Light
* return {ApiResponse} */ listRaw(query?: ListQuery): PromiseSince 1.0.28 (Release 8.4)
Creates a post.
| Permission | Description |
|---|---|
| Glip | Availability of Glip |
Light
*/ post(body: GlipCreatePost): PromiseSince 1.0.28 (Release 8.4)
Creates a post.
| Permission | Description |
|---|---|
| Glip | Availability of Glip |
Light
* return {ApiResponse} */ postRaw(body: GlipCreatePost): Promise