|
| 1 | +// Copyright 2018 JDCLOUD.COM |
| 2 | +// |
| 3 | +// Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +// you may not use this file except in compliance with the License. |
| 5 | +// You may obtain a copy of the License at |
| 6 | +// |
| 7 | +// http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +// |
| 9 | +// Unless required by applicable law or agreed to in writing, software |
| 10 | +// distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +// See the License for the specific language governing permissions and |
| 13 | +// limitations under the License. |
| 14 | +// |
| 15 | +// NOTE: This class is auto generated by the jdcloud code generator program. |
| 16 | + |
| 17 | +package models |
| 18 | + |
| 19 | + |
| 20 | +type AuthStatusVo struct { |
| 21 | + |
| 22 | + /* 银行账号 (Optional) */ |
| 23 | + BankAccount string `json:"bankAccount"` |
| 24 | + |
| 25 | + /* 开户行编号 (Optional) */ |
| 26 | + BankCode string `json:"bankCode"` |
| 27 | + |
| 28 | + /* 是否扫脸实名(已废弃) (Optional) */ |
| 29 | + LegalFace int `json:"legalFace"` |
| 30 | + |
| 31 | + /* 个人实名方式(描述) (Optional) */ |
| 32 | + PersonAuthWay string `json:"personAuthWay"` |
| 33 | + |
| 34 | + /* 是否弱实名0否,1是 (Optional) */ |
| 35 | + WeakAuth int `json:"weakAuth"` |
| 36 | + |
| 37 | + /* 是否需要授权 0否,1是 (Optional) */ |
| 38 | + AuthorizeStatus int `json:"authorizeStatus"` |
| 39 | + |
| 40 | + /* 开户行名称 (Optional) */ |
| 41 | + BankName string `json:"bankName"` |
| 42 | + |
| 43 | + /* 企业实名状态 (Optional) */ |
| 44 | + CompanyAuthStatus int `json:"companyAuthStatus"` |
| 45 | + |
| 46 | + /* 个人实名状态 (Optional) */ |
| 47 | + PersonAuthStatus int `json:"personAuthStatus"` |
| 48 | + |
| 49 | + /* 企业实名方式(描述) (Optional) */ |
| 50 | + CompanyAuthWay string `json:"companyAuthWay"` |
| 51 | + |
| 52 | + /* 认证方式(企业) (Optional) */ |
| 53 | + LegalAuthType int `json:"legalAuthType"` |
| 54 | + |
| 55 | + /* 更新实名认证状态1认证中,0未认证 (Optional) */ |
| 56 | + AuthType int `json:"authType"` |
| 57 | + |
| 58 | + /* 是否允许更新认证false不允许 (Optional) */ |
| 59 | + SupportUpdateCompanyAuth bool `json:"supportUpdateCompanyAuth"` |
| 60 | + |
| 61 | + /* 冻结时间 (Optional) */ |
| 62 | + FrozenTime string `json:"frozenTime"` |
| 63 | + |
| 64 | + /* 是否扫脸实名(已废弃) (Optional) */ |
| 65 | + LegalAuth bool `json:"legalAuth"` |
| 66 | + |
| 67 | + /* 驳回原因 (Optional) */ |
| 68 | + RejectReason string `json:"rejectReason"` |
| 69 | + |
| 70 | + /* 京东金融企业实名状态(-1 为认证 1 审核中 2 被驳回 3 未完成认证 4 认证通过) (Optional) */ |
| 71 | + FromJDWallet int `json:"fromJDWallet"` |
| 72 | + |
| 73 | + /* 京东金融的个人认证状态(-1 未认证 1 已认证) (Optional) */ |
| 74 | + FromFinance int `json:"fromFinance"` |
| 75 | + |
| 76 | + /* 提交方式0:接口提交,1:组件页面 (Optional) */ |
| 77 | + IntegrationType int `json:"integrationType"` |
| 78 | + |
| 79 | + /* 企业实名信息 (Optional) */ |
| 80 | + CompanyAuthInfo CompanyAuthInfoVo `json:"companyAuthInfo"` |
| 81 | + |
| 82 | + /* 个人实名信息 (Optional) */ |
| 83 | + PersonAuthInfo PersonAuthInfoVo `json:"personAuthInfo"` |
| 84 | +} |
0 commit comments