Skip to content

Commit 9a09f68

Browse files
authored
remove transfereeeParticipantId (#29697)
1 parent 9f95ad3 commit 9a09f68

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

sdk/communication/Azure.Communication.CallingServer/api/Azure.Communication.CallingServer.netstandard2.0.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -386,10 +386,9 @@ internal StartCallRecordingResponse() { }
386386
}
387387
public partial class TransferCallOptions
388388
{
389-
public TransferCallOptions(Azure.Communication.PhoneNumberIdentifier alternateCallerId, string userToUserInformation, string operationContext, string transfereeParticipantId) { }
389+
public TransferCallOptions(Azure.Communication.PhoneNumberIdentifier alternateCallerId, string userToUserInformation, string operationContext) { }
390390
public Azure.Communication.PhoneNumberIdentifier AlternateCallerId { get { throw null; } set { } }
391391
public string OperationContext { get { throw null; } set { } }
392-
public string TransfereeParticipantId { get { throw null; } set { } }
393392
public string UserToUserInformation { get { throw null; } set { } }
394393
}
395394
public partial class TransferCallResponse

sdk/communication/Azure.Communication.CallingServer/src/Models/TransferCallOptions.cs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,17 @@ public class TransferCallOptions
2020
/// <summary> The operationContext for this transfer call. </summary>
2121
public string OperationContext { get; set; }
2222

23-
/// <summary> The participantId of the transferee. </summary>
24-
public string TransfereeParticipantId { get; set; }
25-
2623
/// <summary>
2724
/// Transfer Call Options.
2825
/// </summary>
2926
/// <param name="alternateCallerId">The alternate caller id of the source</param>
3027
/// <param name="userToUserInformation">The userToUserInformation.</param>
3128
/// <param name="operationContext">The operationContext for this transfer call.</param>
32-
/// <param name="transfereeParticipantId">The participantId of the transferee.</param>
33-
public TransferCallOptions(PhoneNumberIdentifier alternateCallerId, string userToUserInformation, string operationContext, string transfereeParticipantId)
29+
public TransferCallOptions(PhoneNumberIdentifier alternateCallerId, string userToUserInformation, string operationContext)
3430
{
3531
AlternateCallerId = alternateCallerId;
3632
UserToUserInformation = userToUserInformation;
3733
OperationContext = operationContext;
38-
TransfereeParticipantId = transfereeParticipantId;
3934
}
4035
}
4136
}

0 commit comments

Comments
 (0)