CreateConnectorOptions constructor

CreateConnectorOptions({
  1. required CreateConnectorOptionsConnectorTypeEnum connectorType,
  2. required CreateConnectorOptionsConnectorAuthTypeEnum connectorAuthType,
  3. CreateConnectorImapOptions? imapSettings,
  4. String? inboxId,
  5. required bool syncEnabled,
  6. required CreateConnectorOptionsSyncScheduleTypeEnum syncScheduleType,
  7. int? syncInterval,
})

Returns a new CreateConnectorOptions instance.

Implementation

CreateConnectorOptions({
  required this.connectorType,
  required this.connectorAuthType,
  this.imapSettings,
  this.inboxId,
  required this.syncEnabled,
  required this.syncScheduleType,
  this.syncInterval,
});