Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Setter to CallInvite to allow pstn to pstn tranfer call #39397

Merged
merged 1 commit into from
Oct 19, 2023
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 @@ -268,7 +268,7 @@ public CallInvite(Azure.Communication.CommunicationUserIdentifier targetIdentity
public CallInvite(Azure.Communication.MicrosoftTeamsUserIdentifier targetIdentity) { }
public CallInvite(Azure.Communication.PhoneNumberIdentifier targetPhoneNumberIdentity, Azure.Communication.PhoneNumberIdentifier callerIdNumber) { }
public Azure.Communication.CallAutomation.CustomContext CustomContext { get { throw null; } }
public Azure.Communication.PhoneNumberIdentifier SourceCallerIdNumber { get { throw null; } }
public Azure.Communication.PhoneNumberIdentifier SourceCallerIdNumber { get { throw null; } set { } }
public string SourceDisplayName { get { throw null; } set { } }
public Azure.Communication.CommunicationIdentifier Target { get { throw null; } }
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public CallInvite(MicrosoftTeamsUserIdentifier targetIdentity)
/// The caller ID number to appear on target PSTN callee.
/// </summary>
/// <value></value>
public PhoneNumberIdentifier SourceCallerIdNumber { get; }
public PhoneNumberIdentifier SourceCallerIdNumber { get; set; }

/// <summary>
/// The display name to appear on target callee.
Expand Down
Loading