BinarySignurlV2Response.go 692 B

123456789101112131415
  1. package binary_response
  2. import (
  3. "git.sxidc.com/student-physical-examination/contract_lock_sdk/model/common"
  4. )
  5. type BinarySignurlV2Response struct {
  6. Seal *common.SealInfo `json:"seal,omitempty"`
  7. // 【业务数据签名页面链接】业务数据签名页面链接 当用户使用链接页面签署时,接口仅返回链接页面地址;签署相关的其他信息以postmessage方法前端抛出
  8. SignUrl string `json:"signUrl,omitempty"`
  9. // 【时间戳外观图片】时间戳外观图片 签署使用时间戳外观图片的base64数据。
  10. TimestampImgBase64 string `json:"timestampImgBase64,omitempty"`
  11. // 【数据签名id】数据签名id
  12. Id *int64 `json:"id,omitempty"`
  13. }