fifo property

  1. @JsonKey(name: 'fifo')
bool? fifo
getter/setter pair

if a FIFO bucket fills up, it will delete the oldest item from said bucket when a new item tries to be added to it. If this is FALSE, the bucket will not allow new items to be placed in it until room is made by the user manually deleting items from it. You can see an example of this with the Postmaster's bucket.

Implementation

@JsonKey(name:'fifo')
bool? fifo;