ConnectorDto constructor
ConnectorDto({
- required String id,
- required String userId,
- required ConnectorDtoConnectorTypeEnum connectorType,
- required ConnectorDtoConnectorAuthTypeEnum connectorAuthType,
- required bool syncEnabled,
- required ConnectorDtoSyncScheduleTypeEnum syncScheduleType,
- int? syncInterval,
- String? imapHost,
- int? imapPort,
- String? imapUsername,
- String? imapPassword,
- bool? imapSsl,
- required DateTime createdAt,
Returns a new ConnectorDto instance.
Implementation
ConnectorDto({
required this.id,
required this.userId,
required this.connectorType,
required this.connectorAuthType,
required this.syncEnabled,
required this.syncScheduleType,
this.syncInterval,
this.imapHost,
this.imapPort,
this.imapUsername,
this.imapPassword,
this.imapSsl,
required this.createdAt,
});