Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions types/resources/call.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -340,12 +340,20 @@ export class CallInterface extends PlivoResourceInterface {
* @fail {Error} returns Error
*/
transfer(callUUID: string, params: {
legs: string;
legs: "both";
alegUrl: string;
alegMethod: string;
alegMethod?: string;
blegUrl: string;
blegMethod: string;
}): Promise < any > ;
blegMethod?: string;
} | {
legs: "aleg";
alegUrl: string;
alegMethod?: string;
} | {
legs: "bleg";
blegUrl: string;
blegMethod?: string;
}): Promise < any > ;

/**
* Start a Stream over a Call
Expand Down