chengkun
2025-06-05 4080b5997b38ca84b3b203c7101dcadb97b76925
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// This file is auto-generated, don't edit it. Thanks.
package com.alipay.easysdk.member.identification.models;
 
import com.aliyun.tea.*;
 
public class IdentityParam extends TeaModel {
    @NameInMap("identity_type")
    @Validation(required = true)
    public String identityType;
 
    @NameInMap("cert_type")
    @Validation(required = true)
    public String certType;
 
    @NameInMap("cert_name")
    @Validation(required = true)
    public String certName;
 
    @NameInMap("cert_no")
    @Validation(required = true)
    public String certNo;
 
    public static IdentityParam build(java.util.Map<String, ?> map) throws Exception {
        IdentityParam self = new IdentityParam();
        return TeaModel.build(map, self);
    }
 
    public IdentityParam setIdentityType(String identityType) {
        this.identityType = identityType;
        return this;
    }
    public String getIdentityType() {
        return this.identityType;
    }
 
    public IdentityParam setCertType(String certType) {
        this.certType = certType;
        return this;
    }
    public String getCertType() {
        return this.certType;
    }
 
    public IdentityParam setCertName(String certName) {
        this.certName = certName;
        return this;
    }
    public String getCertName() {
        return this.certName;
    }
 
    public IdentityParam setCertNo(String certNo) {
        this.certNo = certNo;
        return this;
    }
    public String getCertNo() {
        return this.certNo;
    }
 
}