import ContactList from "../definitions/ContactList"; import PersonalContactResource from "../definitions/PersonalContactResource"; import PathSegment from "../PathSegment"; export default class Contact extends PathSegment { constructor(prv: PathSegment, id?: string, service?: any); /** *
| Permission | Description |
|---|---|
| ReadContacts | Viewing user personal contacts |
Heavy
*/ list(query?: ListQuery): Promise| Permission | Description |
|---|---|
| ReadContacts | Viewing user personal contacts |
Heavy
* return {ApiResponse} */ listRaw(query?: ListQuery): Promise| Permission | Description |
|---|---|
| Contacts | Creating, viewing, editing and deleting user personal contacts |
| ReadContacts | Viewing user personal contacts |
Heavy
*/ post(body: PersonalContactResource): Promise| Permission | Description |
|---|---|
| Contacts | Creating, viewing, editing and deleting user personal contacts |
| ReadContacts | Viewing user personal contacts |
Heavy
* return {ApiResponse} */ postRaw(body: PersonalContactResource): Promise| Permission | Description |
|---|---|
| ReadContacts | Viewing user personal contacts |
Heavy
*/ get(): Promise| Permission | Description |
|---|---|
| ReadContacts | Viewing user personal contacts |
Heavy
* return {ApiResponse} */ getRaw(): Promise| Permission | Description |
|---|---|
| Contacts | Creating, viewing, editing and deleting user personal contacts |
| ReadContacts | Viewing user personal contacts |
Heavy
*/ put(body: PersonalContactResource): Promise| Permission | Description |
|---|---|
| Contacts | Creating, viewing, editing and deleting user personal contacts |
| ReadContacts | Viewing user personal contacts |
Heavy
* return {ApiResponse} */ putRaw(body: PersonalContactResource): Promise| Permission | Description |
|---|---|
| Contacts | Creating, viewing, editing and deleting user personal contacts |
| ReadContacts | Viewing user personal contacts |
Heavy
*/ delete(): Promise| Permission | Description |
|---|---|
| Contacts | Creating, viewing, editing and deleting user personal contacts |
| ReadContacts | Viewing user personal contacts |
Heavy
* return {ApiResponse} */ deleteRaw(): Promise