You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the next branch, you can set an extension like item.setExtension('pri', 'A');
Once it is set, you can null the value, but you can't remove the whole extension object. So even if you set the extension to null, it will be part of item.toString(): pri:null
We might want to think about a way to remove extensions, like item.removeExtension('pri');
The text was updated successfully, but these errors were encountered:
In the
next
branch, you can set an extension likeitem.setExtension('pri', 'A');
Once it is set, you can null the value, but you can't remove the whole extension object. So even if you set the extension to null, it will be part of
item.toString()
:pri:null
We might want to think about a way to remove extensions, like
item.removeExtension('pri');
The text was updated successfully, but these errors were encountered: