RetentionId property

Uuid? RetentionId
Gets or sets the retention id.

Implementation

Uuid? get RetentionId => this._retentionId;
void RetentionId=(Uuid? value)

Implementation

set RetentionId(Uuid? value) {
  if (this.CanSetFieldValue(this._retentionId, value)) {
    this._retentionId = value;
    this.Changed();
  }
}