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

Since 1.0.4 (Release 5.13)

Returns the information on the Free Conference Calling (FCC) feature for a given extension.

Required Permissions

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

Usage Plan Group

Light

*/ get(query?: GetQuery): Promise; /** *

Since 1.0.4 (Release 5.13)

Returns the information on the Free Conference Calling (FCC) feature for a given extension.

Required Permissions

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

Usage Plan Group

Light

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

Required Permissions

PermissionDescription
EditExtensionsViewing and updating my extension info (includes extension name, number, email and phone number)

Usage Plan Group

Medium

*/ put(body: UpdateConferencingInfoRequest): Promise; /** *

Required Permissions

PermissionDescription
EditExtensionsViewing and updating my extension info (includes extension name, number, email and phone number)

Usage Plan Group

Medium

* return {ApiResponse} */ putRaw(body: UpdateConferencingInfoRequest): Promise; } export interface GetQuery { /** * Internal identifier of a country. If not specified, the response is returned for the brand country */ countryId?: string; }