GetOrganizationsAccessReportResponse constructor

GetOrganizationsAccessReportResponse({
  1. required DateTime jobCreationDate,
  2. required JobStatusType jobStatus,
  3. List<AccessDetail>? accessDetails,
  4. ErrorDetails? errorDetails,
  5. bool? isTruncated,
  6. DateTime? jobCompletionDate,
  7. String? marker,
  8. int? numberOfServicesAccessible,
  9. int? numberOfServicesNotAccessed,
})

Implementation

GetOrganizationsAccessReportResponse({
  required this.jobCreationDate,
  required this.jobStatus,
  this.accessDetails,
  this.errorDetails,
  this.isTruncated,
  this.jobCompletionDate,
  this.marker,
  this.numberOfServicesAccessible,
  this.numberOfServicesNotAccessed,
});