mirror of
https://github.com/appwrite/sdk-for-flutter.git
synced 2026-04-07 19:27:41 +00:00
14 lines
236 B
Dart
14 lines
236 B
Dart
part of '../../enums.dart';
|
|
|
|
enum ExecutionTrigger {
|
|
http(value: 'http'),
|
|
schedule(value: 'schedule'),
|
|
event(value: 'event');
|
|
|
|
const ExecutionTrigger({required this.value});
|
|
|
|
final String value;
|
|
|
|
String toJson() => value;
|
|
}
|