Skip to content

Commit

Permalink
Add Setter to CallInvite to allow pstn to pstn tranfer call (Azure#39397
Browse files Browse the repository at this point in the history
)
  • Loading branch information
abhishesingh-msft authored Oct 19, 2023
1 parent a4384bd commit f46e986
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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

0 comments on commit f46e986

Please sign in to comment.