This commit is contained in:
12
dist/services/GroupContactService.js
vendored
12
dist/services/GroupContactService.js
vendored
@@ -6,7 +6,7 @@ class GroupContactService {
|
||||
/**
|
||||
* Get all
|
||||
* Lists all contacts. <br> This includes the contact's associated groups.
|
||||
* @result ResponseGroupContact
|
||||
* @returns ResponseGroupContact
|
||||
* @throws ApiError
|
||||
*/
|
||||
static async groupContactControllerGetAll() {
|
||||
@@ -20,7 +20,7 @@ class GroupContactService {
|
||||
* Post
|
||||
* Create a new contact.
|
||||
* @param requestBody CreateGroupContact
|
||||
* @result ResponseGroupContact
|
||||
* @returns ResponseGroupContact
|
||||
* @throws ApiError
|
||||
*/
|
||||
static async groupContactControllerPost(requestBody) {
|
||||
@@ -35,7 +35,7 @@ class GroupContactService {
|
||||
* Get one
|
||||
* Lists all information about the contact whose id got provided. <br> This includes the contact's associated groups.
|
||||
* @param id
|
||||
* @result ResponseGroupContact
|
||||
* @returns ResponseGroupContact
|
||||
* @throws ApiError
|
||||
*/
|
||||
static async groupContactControllerGetOne(id) {
|
||||
@@ -50,7 +50,7 @@ class GroupContactService {
|
||||
* Update the contact whose id you provided. <br> Please remember that ids can't be changed.
|
||||
* @param id
|
||||
* @param requestBody UpdateGroupContact
|
||||
* @result ResponseGroupContact
|
||||
* @returns ResponseGroupContact
|
||||
* @throws ApiError
|
||||
*/
|
||||
static async groupContactControllerPut(id, requestBody) {
|
||||
@@ -66,8 +66,8 @@ class GroupContactService {
|
||||
* Delete the contact whose id you provided. <br> If no contact with this id exists it will just return 204(no content). <br> This won't delete any groups associated with the contact.
|
||||
* @param id
|
||||
* @param force
|
||||
* @result ResponseGroupContact
|
||||
* @result ResponseEmpty
|
||||
* @returns ResponseGroupContact
|
||||
* @returns ResponseEmpty
|
||||
* @throws ApiError
|
||||
*/
|
||||
static async groupContactControllerRemove(id, force) {
|
||||
|
||||
Reference in New Issue
Block a user