import GetRingOutStatusResponse from "../definitions/GetRingOutStatusResponse"; import MakeRingOutRequest from "../definitions/MakeRingOutRequest"; import PathSegment from "../PathSegment"; export default class RingOut extends PathSegment { constructor(prv: PathSegment, id?: string, service?: any); /** *

Since 1.0.7 (Release 5.16)

Makes a 2-leg RingOut call.

Required Permissions

PermissionDescription
RingOutPerforming two-legged ring-out phone calls

Usage Plan Group

Heavy

*/ post(body: MakeRingOutRequest): Promise; /** *

Since 1.0.7 (Release 5.16)

Makes a 2-leg RingOut call.

Required Permissions

PermissionDescription
RingOutPerforming two-legged ring-out phone calls

Usage Plan Group

Heavy

* return {ApiResponse} */ postRaw(body: MakeRingOutRequest): Promise; /** *

Since 1.0.7 (Release 5.16)

Returns the status of a 2-leg RingOut call.

Required Permissions

PermissionDescription
RingOutPerforming two-legged ring-out phone calls

Usage Plan Group

Light

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

Since 1.0.7 (Release 5.16)

Returns the status of a 2-leg RingOut call.

Required Permissions

PermissionDescription
RingOutPerforming two-legged ring-out phone calls

Usage Plan Group

Light

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

Cancels the 2-leg RingOut call.

Required Permissions

PermissionDescription
RingOutPerforming two-legged ring-out phone calls

Usage Plan Group

Heavy

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

Cancels the 2-leg RingOut call.

Required Permissions

PermissionDescription
RingOutPerforming two-legged ring-out phone calls

Usage Plan Group

Heavy

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