toAuditReportResponseFormat method

AuditReportResponseFormat toAuditReportResponseFormat()

Implementation

AuditReportResponseFormat toAuditReportResponseFormat() {
  switch (this) {
    case 'JSON':
      return AuditReportResponseFormat.json;
    case 'CSV':
      return AuditReportResponseFormat.csv;
  }
  throw Exception('$this is not known in enum AuditReportResponseFormat');
}