ConnectorProjection constructor

ConnectorProjection({
  1. String? id,
  2. required String userId,
  3. required String inboxId,
  4. required DateTime createdAt,
  5. required ConnectorProjectionConnectorTypeEnum connectorType,
  6. required ConnectorProjectionSyncScheduleTypeEnum syncScheduleType,
  7. int? syncInterval,
  8. 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,
});