content_check_param.go 369 B

12345678910111213
  1. package vo
  2. type ContentCheckParam struct {
  3. AK string `json:"ak"`
  4. SK string `json:"sk"`
  5. ProjectId string `json:"project_id"`
  6. Text string `json:"text"`
  7. Image string `json:"image"`
  8. Video string `json:"video"`
  9. Document string `json:"document"`
  10. Format string `json:"format"`
  11. Credentials string `json:"credentials"`
  12. }