UsersUpdate constructor

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

Returns a new UsersUpdate instance.

Implementation

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