status property

int? get status

Implementation

int? get status => this._status;
set status (int? status)

Implementation

set status(int? status) {
  this._status = status;
  this.__isset_status = true;
}