您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

27 行
472B

  1. /**
  2. * Rules
  3. * API for create rules
  4. *
  5. * The version of the OpenAPI document: 1.0
  6. *
  7. *
  8. * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
  9. * https://openapi-generator.tech
  10. * Do not edit the class manually.
  11. */
  12. export interface CreateRuleDto {
  13. /**
  14. * the paragraph of the rule.
  15. */
  16. paragraph: string;
  17. /**
  18. * the rule
  19. */
  20. text: string;
  21. subRuleIds: Array<string>;
  22. parentId: string;
  23. }