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