Skip to content

Commit

Permalink
remove transfereeeParticipantId (#29697)
Browse files Browse the repository at this point in the history
  • Loading branch information
fangchen0601 committed Jul 7, 2022
1 parent 9f95ad3 commit 9a09f68
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -386,10 +386,9 @@ public partial class 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;
}
}
}

0 comments on commit 9a09f68

Please sign in to comment.