You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
908B

  1. class ActionUISupply {
  2. int? id;
  3. String? name;
  4. String? externalTable;
  5. int? objectType;
  6. String? condition;
  7. int? activityTypeId;
  8. ActionUISupply({
  9. this.id,
  10. this.name,
  11. this.externalTable,
  12. this.objectType,
  13. this.condition,
  14. this.activityTypeId,
  15. });
  16. ActionUISupply.fromJson(Map<String, dynamic> json) {
  17. id = json['id'];
  18. name = json['name'];
  19. externalTable = json['externalTable'];
  20. objectType = json['objectType'];
  21. condition = json['condition'];
  22. activityTypeId = json['activityTypeId'];
  23. }
  24. Map<String, dynamic> toJson() {
  25. final Map<String, dynamic> data = new Map<String, dynamic>();
  26. data['id'] = this.id;
  27. data['name'] = this.name;
  28. data['externalTable'] = this.externalTable;
  29. data['objectType'] = this.objectType;
  30. data['condition'] = this.condition;
  31. data['activityTypeId'] = this.activityTypeId;
  32. return data;
  33. }
  34. }