ChainCustomNotaryResponse.go 909 B

123456789101112131415161718
  1. package others_response
  2. // 【响应结果】响应结果
  3. type ChainCustomNotaryResponse struct {
  4. // 【节点id】节点id 该条存证记录唯一id,后续可通过节点id申请出证
  5. EvidenceId string `json:"evidenceId"`
  6. // 【存证机构】存证机构
  7. NotaryVendor string `json:"notaryVendor"`
  8. // 【存证编号】存证编号 同一条存证链路的唯一id,后续可通过存证编号申请出证
  9. ChainId string `json:"chainId"`
  10. // 【文件hash】文件hash 数据原文hash值,当notaryType(存证数据类型)为FILE(数据原文)时返回
  11. ContentHash string `json:"contentHash,omitempty"`
  12. // 【存证时间】存证时间 格式:yyyy-MM-dd HH:mm:SS,与存证报告中的时间可能存在秒级的差别,实际数据以存证报告中为准
  13. NotaryTime string `json:"notaryTime"`
  14. // 【统一证据编号】统一证据编号
  15. TxHash string `json:"txHash"`
  16. }