CrossborderContractQueryLocationLocationsResponse.go 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. package common
  2. type CrossborderContractQueryLocationLocationsResponse struct {
  3. // 【签署位置id】签署位置id
  4. Id string `json:"id"`
  5. // 【跨境电子签约文件id】跨境电子签约文件id
  6. ContractId string `json:"contractId"`
  7. // 【签署方id】签署方id
  8. SignatoryId string `json:"signatoryId"`
  9. // 【签署节点id】签署节点id
  10. ActionId string `json:"actionId,omitempty"`
  11. // 【签署文档id】签署文档id
  12. DocumentId *int64 `json:"documentId,omitempty"`
  13. RectType string `json:"rectType,omitempty"`
  14. // 【签署位置所在页数】签署位置所在页数
  15. Page *int64 `json:"page,omitempty"`
  16. // 【签署位置宽(占页面宽比)】签署位置宽(占页面宽比)
  17. Width string `json:"width"`
  18. // 【签署位置高(占页面高比)】签署位置高(占页面高比)
  19. Height string `json:"height"`
  20. // 【签署位置横坐标偏移量,单位mm】签署位置横坐标偏移量,单位mm
  21. OffsetX *float64 `json:"offsetX,omitempty"`
  22. // 【签署位置纵坐标偏移量,单位mm】签署位置纵坐标偏移量,单位mm
  23. OffsetY *float64 `json:"offsetY,omitempty"`
  24. // 【签署位置状态】签署位置状态 NORMAL(正常)、DELETE(已删除)
  25. Status string `json:"status"`
  26. // 【签署位置旋转角度】签署位置旋转角度
  27. RotationDegrees *float64 `json:"rotationDegrees"`
  28. // 【是否为接口自定义规格】是否为接口自定义规格
  29. CustomSize *bool `json:"customSize"`
  30. // 【签署位置是否来自模板配置的位置】签署位置是否来自模板配置的位置
  31. FromTemplate string `json:"fromTemplate"`
  32. // 【电子签约文档名称】电子签约文档名称
  33. Title string `json:"title,omitempty"`
  34. // 【签署位置创建时间】签署位置创建时间 格式:yyyy-MM-dd HH:mm:ss
  35. CreateTime string `json:"createTime"`
  36. }