CompanyInfoVerificationResponse.go 590 B

1234567891011121314
  1. package company_response
  2. import (
  3. "git.sxidc.com/student-physical-examination/contract_lock_sdk/model/common"
  4. )
  5. // 【校验信息】校验信息
  6. type CompanyInfoVerificationResponse struct {
  7. // 【校验结果】校验结果,true为通过、false为未通过
  8. VerificationResult *bool `json:"verificationResult,omitempty"`
  9. // 【失败原因】失败原因,校验失败的具体原因
  10. FailureReason string `json:"failureReason,omitempty"`
  11. CorpCredit *common.CompanyInfoVerificationCorpCreditResponse `json:"corpCredit,omitempty"`
  12. }