Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -386,10 +386,9 @@ internal StartCallRecordingResponse() { }
}
public partial class TransferCallOptions
{
public TransferCallOptions(Azure.Communication.PhoneNumberIdentifier alternateCallerId, string userToUserInformation, string operationContext, string transfereeParticipantId) { }
public TransferCallOptions(Azure.Communication.PhoneNumberIdentifier alternateCallerId, string userToUserInformation, string operationContext) { }
public Azure.Communication.PhoneNumberIdentifier AlternateCallerId { get { throw null; } set { } }
public string OperationContext { get { throw null; } set { } }
public string TransfereeParticipantId { get { throw null; } set { } }
public string UserToUserInformation { get { throw null; } set { } }
}
public partial class TransferCallResponse
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,17 @@ public class TransferCallOptions
/// <summary> The operationContext for this transfer call. </summary>
public string OperationContext { get; set; }

/// <summary> The participantId of the transferee. </summary>
public string TransfereeParticipantId { get; set; }

/// <summary>
/// Transfer Call Options.
/// </summary>
/// <param name="alternateCallerId">The alternate caller id of the source</param>
/// <param name="userToUserInformation">The userToUserInformation.</param>
/// <param name="operationContext">The operationContext for this transfer call.</param>
/// <param name="transfereeParticipantId">The participantId of the transferee.</param>
public TransferCallOptions(PhoneNumberIdentifier alternateCallerId, string userToUserInformation, string operationContext, string transfereeParticipantId)
public TransferCallOptions(PhoneNumberIdentifier alternateCallerId, string userToUserInformation, string operationContext)
{
AlternateCallerId = alternateCallerId;
UserToUserInformation = userToUserInformation;
OperationContext = operationContext;
TransfereeParticipantId = transfereeParticipantId;
}
}
}