doesPostmasterPullHaveSideEffects property
- @JsonKey(name: 'doesPostmasterPullHaveSideEffects')
getter/setter pair
The boolean will indicate to us (and you!) whether something could happen when you transfer this item from the Postmaster that might be considered a "destructive" action. It is not feasible currently to tell you (or ourelves!) in a consistent way whether this will actually cause a destructive action, so we are playing it safe: if it has the potential to do so, we will not allow it to be transferred from the Postmaster by default. You will need to check for this flag before transferring an item from the Postmaster, or else you'll end up receiving an error.
Implementation
@JsonKey(name:'doesPostmasterPullHaveSideEffects')
bool? doesPostmasterPullHaveSideEffects;