mirror of
https://github.com/appwrite/sdk-for-flutter.git
synced 2026-04-07 19:27:41 +00:00
17 lines
341 B
Dart
17 lines
341 B
Dart
part of '../../enums.dart';
|
|
|
|
enum ExecutionStatus {
|
|
waiting(value: 'waiting'),
|
|
processing(value: 'processing'),
|
|
completed(value: 'completed'),
|
|
failed(value: 'failed'),
|
|
scheduled(value: 'scheduled');
|
|
|
|
const ExecutionStatus({
|
|
required this.value
|
|
});
|
|
|
|
final String value;
|
|
|
|
String toJson() => value;
|
|
} |