DataSource constructor

DataSource({
  1. String? authorizationType,
  2. String? clientId,
  3. String? dataRefreshType,
  4. String? dataSourceId,
  5. int? defaultDataRefreshWindowDays,
  6. String? defaultSchedule,
  7. String? description,
  8. String? displayName,
  9. String? helpUrl,
  10. bool? manualRunsDisabled,
  11. String? minimumScheduleInterval,
  12. String? name,
  13. List<DataSourceParameter>? parameters,
  14. List<String>? scopes,
  15. bool? supportsCustomSchedule,
  16. bool? supportsMultipleTransfers,
  17. String? transferType,
  18. int? updateDeadlineSeconds,
})

Implementation

DataSource({
  this.authorizationType,
  this.clientId,
  this.dataRefreshType,
  this.dataSourceId,
  this.defaultDataRefreshWindowDays,
  this.defaultSchedule,
  this.description,
  this.displayName,
  this.helpUrl,
  this.manualRunsDisabled,
  this.minimumScheduleInterval,
  this.name,
  this.parameters,
  this.scopes,
  this.supportsCustomSchedule,
  this.supportsMultipleTransfers,
  this.transferType,
  this.updateDeadlineSeconds,
});