MobilesealLoginAppResultResponse.go 859 B

123456789101112131415161718192021
  1. package others_response
  2. type MobilesealLoginAppResultResponse struct {
  3. // 【本次登录任务id】本次登录任务id
  4. LoginSid string `json:"loginSid"`
  5. // 【第三方业务系统本次登录任务id】第三方业务系统本次登录任务id
  6. BizId string `json:"bizId"`
  7. // 【证书主体名称】证书主体名称
  8. Username string `json:"username"`
  9. // 【授权证书序列号】授权证书序列号
  10. DocId string `json:"docId"`
  11. // 【随机数签名结果】随机数签名结果
  12. SignedLoginRandomNumber string `json:"signedLoginRandomNumber"`
  13. // 【登录方类型】登录方类型
  14. TenantType string `json:"tenantType"`
  15. // 【APP选中的移动签名证书base64】APP选中的移动签名证书base64
  16. SignCertBase64 string `json:"signCertBase64"`
  17. // 【加解密公钥】加解密公钥
  18. DesPublicKey string `json:"desPublicKey"`
  19. }