import IIvrPrompts from "../definitions/IvrPrompts"; import PromptInfo from "../definitions/PromptInfo"; import PathSegment from "../PathSegment"; import Content from "./Content"; export default class IvrPrompts extends PathSegment { constructor(prv: PathSegment, id?: string, service?: any); /** * Internal identifier of a message attachment */ content(id?: string): Content; /** *

Since 1.0.32 (Release 9.3)

Returns a list of IVR prompts.

Required Permissions

PermissionDescription
ReadAccountsViewing user account info (including name, business name, address and phone number/account number)

API Group

Medium

*/ list(): Promise; /** *

Since 1.0.32 (Release 9.3)

Returns a list of IVR prompts.

Required Permissions

PermissionDescription
ReadAccountsViewing user account info (including name, business name, address and phone number/account number)

API Group

Medium

* return {ApiResponse} */ listRaw(): Promise; /** *

Since 1.0.32 (Release 9.3)

Returns an IVR prompt by ID

Required Permissions

PermissionDescription
ReadAccountsViewing user account info (including name, business name, address and phone number/account number)

API Group

Medium

*/ get(): Promise; /** *

Since 1.0.32 (Release 9.3)

Returns an IVR prompt by ID

Required Permissions

PermissionDescription
ReadAccountsViewing user account info (including name, business name, address and phone number/account number)

API Group

Medium

* return {ApiResponse} */ getRaw(): Promise; /** *

Since 1.0.32 (Release 9.3)

Deletes an IVR prompt by ID

Required Permissions

PermissionDescription
EditAccountsViewing user account info (including name, business name, address and phone number/account number)

API Group

Heavy

*/ delete(): Promise; /** *

Since 1.0.32 (Release 9.3)

Deletes an IVR prompt by ID

Required Permissions

PermissionDescription
EditAccountsViewing user account info (including name, business name, address and phone number/account number)

API Group

Heavy

* return {ApiResponse} */ deleteRaw(): Promise; }