UsersUpdate constructor

UsersUpdate({
  1. String? companyId,
  2. int? functionId,
  3. UsersUpdateStatusEnum? status,
  4. String? emailAddress,
  5. String? timezone,
})

Returns a new UsersUpdate instance.

Implementation

UsersUpdate({
  this.companyId,
  this.functionId,
  this.status,
  this.emailAddress,
  this.timezone,
});