ContractCreateResult.go 527 B

12345678910111213
  1. package common
  2. type ContractCreateResult struct {
  3. // 【电子签约文件id】电子签约文件id
  4. ContractId *int64 `json:"contractId,omitempty"`
  5. // 【文档信息】文档信息
  6. DocumentInfos []*DocumentInfo `json:"documentInfos,omitempty"`
  7. // 【未签签署方/签署节点的签署页面】未签签署方/签署节点的签署页面
  8. SignPageInfos []*EmbedSignPageInfo `json:"signPageInfos,omitempty"`
  9. // 【文件下载链接】文件下载链接
  10. FileDownloadLink string `json:"fileDownloadLink,omitempty"`
  11. }