SID property

String? SID
Gets or sets the SID of the user.

Implementation

String? get SID => this._sID;
void SID=(String? value)

Implementation

set SID(String? value) {
  if (this.CanSetFieldValue(this._sID, value)) {
    this._sID = value;
    this.Changed();
  }
}