| 123456789101112131415161718192021 |
- package binary_response
- import (
- "private-go-sdk/model/common"
- )
- // 【数据签名信息】数据签名信息
- type BinaryDetailResponse struct {
- // 【数据签名id】数据签名id
- Id string `json:"id"`
- // 【数据签名主题】数据签名主题
- Subject string `json:"subject"`
- Seal *common.BinarySeal `json:"seal,omitempty"`
- Company *common.BinaryCompany `json:"company"`
- Operator *common.BinaryOperator `json:"operator"`
- VerifyResult *common.VerifyResult `json:"verifyResult"`
- // 【签署图片】签署图片 实际参与签署的签署图片的base64数据,使用印章签署时返回印章信息,使用签名签署时返回签名信息
- SealImgBase64 string `json:"sealImgBase64"`
- // 【时间戳外观图片】时间戳外观图片
- TimestampImgBase64 string `json:"timestampImgBase64"`
- }
|