mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-18 14:34:23 +01:00
16 lines
305 B
Dart
16 lines
305 B
Dart
class ReportRequestBody {
|
|
final String test;
|
|
final String testRunId;
|
|
final bool mock;
|
|
|
|
ReportRequestBody(this.mock, {required this.test, required this.testRunId});
|
|
|
|
Map<String, dynamic> toJson() {
|
|
return {
|
|
'test': test,
|
|
'test_run_id': testRunId,
|
|
'mock': mock,
|
|
};
|
|
}
|
|
}
|