aboutsummaryrefslogtreecommitdiff
path: root/jb-ui/src/api_fsb/docs/ReportTask.md
diff options
context:
space:
mode:
authorMax Nanis2026-02-18 20:42:03 -0500
committerMax Nanis2026-02-18 20:42:03 -0500
commit3eaa56f0306ead818f64c3d99fc6d230d9b970a4 (patch)
tree9fecc2f1456e6321572e0e65f57106916df173e2 /jb-ui/src/api_fsb/docs/ReportTask.md
downloadamt-jb-3eaa56f0306ead818f64c3d99fc6d230d9b970a4.tar.gz
amt-jb-3eaa56f0306ead818f64c3d99fc6d230d9b970a4.zip
HERE WE GO, HERE WE GO, HERE WE GO
Diffstat (limited to 'jb-ui/src/api_fsb/docs/ReportTask.md')
-rw-r--r--jb-ui/src/api_fsb/docs/ReportTask.md24
1 files changed, 24 insertions, 0 deletions
diff --git a/jb-ui/src/api_fsb/docs/ReportTask.md b/jb-ui/src/api_fsb/docs/ReportTask.md
new file mode 100644
index 0000000..8f5560b
--- /dev/null
+++ b/jb-ui/src/api_fsb/docs/ReportTask.md
@@ -0,0 +1,24 @@
+# ReportTask
+
+
+## Properties
+
+Name | Type | Description | Notes
+------------ | ------------- | ------------- | -------------
+**bpuid** | **string** | The unique identifier for the user, which is set by the Supplier. | [default to undefined]
+**reasons** | [**Array<ReportValue>**](ReportValue.md) | The reason a user reported a task. Allowed values: - __0__ *(REASON_UNKNOWN)*: Used to indicate the user exited the task without giving feedback - __1__ *(TECHNICAL_ERROR)*: Task is in the wrong language/country, unanswerable question, won\'t proceed to next question, loading forever, error message - __2__ *(NO_REDIRECT)*: Task ended (completed or failed, and showed the user some dialog indicating the task was over), but failed to redirect - __3__ *(PRIVACY_INVASION)*: Asked for full name, home address, identity on another site, cc - __4__ *(UNCOMFORTABLE_TOPICS)*: Asked about children, employer, medical issues, drug use, STDs, etc. - __5__ *(ASKED_FOR_NOT_ALLOWED_ACTION)*: Asked to install software, signup/login to external site, access webcam, promise to pay using external site, etc. - __6__ *(BAD_ON_MOBILE)*: Task doesn\'t work well on a mobile device - __7__ *(DIDNT_LIKE)*: Too long, too boring, confusing, complicated, too many open-ended/free-response questions | [optional] [default to undefined]
+**notes** | **string** | | [optional] [default to '']
+
+## Example
+
+```typescript
+import { ReportTask } from './api';
+
+const instance: ReportTask = {
+ bpuid,
+ reasons,
+ notes,
+};
+```
+
+[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)