import 'package:json_annotation/json_annotation.dart'; enum LedgerAccountStatusDTO { @JsonValue('unspecified') unspecified, @JsonValue('active') active, @JsonValue('frozen') frozen, }