All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkats_1_0.models.GetCandidateByPhoneNumberResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkats_1_0.models;

import com.aliyun.tea.*;

public class GetCandidateByPhoneNumberResponseBody extends TeaModel {
    // 候选人标识
    @NameInMap("candidateId")
    public String candidateId;

    // 候选人姓名
    @NameInMap("name")
    public String name;

    public static GetCandidateByPhoneNumberResponseBody build(java.util.Map map) throws Exception {
        GetCandidateByPhoneNumberResponseBody self = new GetCandidateByPhoneNumberResponseBody();
        return TeaModel.build(map, self);
    }

    public GetCandidateByPhoneNumberResponseBody setCandidateId(String candidateId) {
        this.candidateId = candidateId;
        return this;
    }
    public String getCandidateId() {
        return this.candidateId;
    }

    public GetCandidateByPhoneNumberResponseBody setName(String name) {
        this.name = name;
        return this;
    }
    public String getName() {
        return this.name;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy