CreateInboxDto constructor

CreateInboxDto({
  1. String? emailAddress,
  2. String? domainName,
  3. String? domainId,
  4. String? name,
  5. String? description,
  6. bool? useDomainPool,
  7. List<String>? tags = const [],
  8. DateTime? expiresAt,
  9. bool? favourite,
  10. int? expiresIn,
  11. bool? allowTeamAccess,
  12. CreateInboxDtoInboxTypeEnum? inboxType,
  13. bool? virtualInbox,
  14. bool? useShortAddress,
})

Returns a new CreateInboxDto instance.

Implementation

CreateInboxDto({
  this.emailAddress,
  this.domainName,
  this.domainId,
  this.name,
  this.description,
  this.useDomainPool,
  this.tags = const [],
  this.expiresAt,
  this.favourite,
  this.expiresIn,
  this.allowTeamAccess,
  this.inboxType,
  this.virtualInbox,
  this.useShortAddress,
});