ConnectorProjection constructor
ConnectorProjection({
- String? id,
- required String userId,
- required String inboxId,
- required DateTime createdAt,
- required ConnectorProjectionConnectorTypeEnum connectorType,
- required ConnectorProjectionSyncScheduleTypeEnum syncScheduleType,
- int? syncInterval,
- required bool syncEnabled,
Returns a new ConnectorProjection instance.
Implementation
ConnectorProjection({
this.id,
required this.userId,
required this.inboxId,
required this.createdAt,
required this.connectorType,
required this.syncScheduleType,
this.syncInterval,
required this.syncEnabled,
});