toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case ComplianceUploadType.complete:
      return 'COMPLETE';
    case ComplianceUploadType.partial:
      return 'PARTIAL';
  }
}