CompanyauthV2Response.go 654 B

12345678910111213141516
  1. package company_response
  2. import (
  3. "git.sxidc.com/student-physical-examination/contract_lock_sdk/model/common"
  4. )
  5. // 【响应结果】响应结果,参考接口说明CompanyFullAuthResponse
  6. type CompanyauthV2Response struct {
  7. // 【法人在线授权链接】法人在线授权链接,认证方式选择1(法定代表人认证)时返回
  8. LegalSignUrl string `json:"legalSignUrl,omitempty"`
  9. // 【认证id】认证id,可用此查询具体某次认证状态
  10. RequestId string `json:"requestId,omitempty"`
  11. // 【单位id】单位id
  12. CompanyId string `json:"companyId,omitempty"`
  13. PayInfo *common.PayInfo `json:"payInfo,omitempty"`
  14. }