toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case AuditReportResponseFormat.json:
      return 'JSON';
    case AuditReportResponseFormat.csv:
      return 'CSV';
  }
}