Skip to content

Commit 864fb78

Browse files
[Azure.Communication.CallAutomation] Add RawId to CommunicationUserIdentifierModel (Azure#30724)
* Update the CommunicationIdentifierConverter to set RawId
1 parent 833efe8 commit 864fb78

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

sdk/communication/azure-communication-callingserver/src/main/java/com/azure/communication/callingserver/implementation/converters/CommunicationIdentifierConverter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ public static CommunicationIdentifierModel convert(CommunicationIdentifier ident
7373
if (identifier instanceof CommunicationUserIdentifier) {
7474
CommunicationUserIdentifier communicationUserIdentifier = (CommunicationUserIdentifier) identifier;
7575
return new CommunicationIdentifierModel()
76+
.setRawId(communicationUserIdentifier.getRawId())
7677
.setCommunicationUser(
7778
new CommunicationUserIdentifierModel().setId(communicationUserIdentifier.getId()));
7879
}

0 commit comments

Comments
 (0)