SealPersonalCreateurlResponse.go 502 B

123456789101112
  1. package seal_response
  2. // 【响应结果】响应结果
  3. type SealPersonalCreateurlResponse struct {
  4. // 【签名id】签名id
  5. Id *int64 `json:"id"`
  6. // 【创建个人签名链接】创建个人签名链接
  7. PageUrl string `json:"pageUrl"`
  8. // 【创建个人签名内网链接】创建个人签名内网链接 电子签章控制台中【集成应用配置-接口返回URL】中若配置了“同时返回内/外网地址“时返回此参数
  9. LocalPageUrl string `json:"localPageUrl,omitempty"`
  10. }