DatafeedStatus constructor

DatafeedStatus({
  1. String? country,
  2. String? datafeedId,
  3. List<DatafeedStatusError>? errors,
  4. String? feedLabel,
  5. String? itemsTotal,
  6. String? itemsValid,
  7. String? kind,
  8. String? language,
  9. String? lastUploadDate,
  10. String? processingStatus,
  11. List<DatafeedStatusError>? warnings,
})

Implementation

DatafeedStatus({
  this.country,
  this.datafeedId,
  this.errors,
  this.feedLabel,
  this.itemsTotal,
  this.itemsValid,
  this.kind,
  this.language,
  this.lastUploadDate,
  this.processingStatus,
  this.warnings,
});