25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

29 lines
565 B

  1. import 'package:json_annotation/json_annotation.dart';
  2. part 'streamtrans_results.g.dart';
  3. @JsonSerializable()
  4. class StreamtransResults {
  5. String? compress;
  6. String? encoding;
  7. String? format;
  8. String? seq;
  9. int? status;
  10. String? text;
  11. StreamtransResults({
  12. this.compress,
  13. this.encoding,
  14. this.format,
  15. this.seq,
  16. this.status,
  17. this.text,
  18. });
  19. factory StreamtransResults.fromJson(Map<String, dynamic> json) {
  20. return _$StreamtransResultsFromJson(json);
  21. }
  22. Map<String, dynamic> toJson() => _$StreamtransResultsToJson(this);
  23. }