shiftExpiryDate property

int? shiftExpiryDate

This option allows shifting the date of expiry into the future or past for number of months specified. This is useful, for example, in some cases when document might be still valid for some period after original expiration date to prevent negative validity status for such documents. Or by shifting the date to the past will set negative validity for the documents that is about to expire in a specified number of months.

Implementation

int? get shiftExpiryDate => _shiftExpiryDate;
void shiftExpiryDate=(int? val)

Implementation

set shiftExpiryDate(int? val) {
  _shiftExpiryDate = val;
  _set({"shiftExpiryDate": val});
}