- package common
- // 【批注内容】批注内容,各签署节点的操作人对文件添加的批注内容
- type AnnotationStampers struct {
- // 【批注内容】批注内容
- Annotation string `json:"annotation"`
- // 【批注内容的类型】批注内容的类型 TEXT(文字批注),HAND_WRITE(手写批注)
- Type_ string `json:"type"`
- // 【批注内容宽度】批注内容宽度,单位为mm
- Width *int64 `json:"width"`
- // 【批注内容高度】批注内容高度,单位为mm
- Hight *int64 `json:"hight"`
- // 【批注内容所在签署文档id】批注内容所在签署文档id
- DocumentId *float64 `json:"documentId"`
- }
|