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

Since 1.0.18 (Release 6.5)

Returns call recording metadata.

Required Permissions

PermissionDescription
ReadCallRecordingDownloading call recording content

Usage Plan Group

Heavy

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

Since 1.0.18 (Release 6.5)

Returns call recording metadata.

Required Permissions

PermissionDescription
ReadCallRecordingDownloading call recording content

Usage Plan Group

Heavy

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