PermissionType property

int? PermissionType
Gets or sets the permission of the attachment.

Implementation

int? get PermissionType => this._permissionType;
void PermissionType=(int? value)

Implementation

set PermissionType(int? value) {
  if (this.CanSetFieldValue(this._permissionType, value)) {
    this._permissionType = value;
    this.Changed();
  }
}