UsersInput constructor

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

Returns a new UsersInput instance.

Implementation

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