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

com.aliyun.dingtalkats_1_0.models.QueryInterviewsRequest 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 QueryInterviewsRequest extends TeaModel {
    // 业务标识
    @NameInMap("bizCode")
    public String bizCode;

    // 候选人标识
    @NameInMap("candidateId")
    public String candidateId;

    // 面试开始时间的查询起始时间(单位:毫秒)
    @NameInMap("startTimeBeginMillis")
    public Long startTimeBeginMillis;

    // 面试开始时间的查询结束时间(单位:毫秒)
    @NameInMap("startTimeEndMillis")
    public Long startTimeEndMillis;

    // 分页游标,首次调用传空
    @NameInMap("nextToken")
    public String nextToken;

    // 分页大小
    @NameInMap("size")
    public Long size;

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

    public QueryInterviewsRequest setBizCode(String bizCode) {
        this.bizCode = bizCode;
        return this;
    }
    public String getBizCode() {
        return this.bizCode;
    }

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

    public QueryInterviewsRequest setStartTimeBeginMillis(Long startTimeBeginMillis) {
        this.startTimeBeginMillis = startTimeBeginMillis;
        return this;
    }
    public Long getStartTimeBeginMillis() {
        return this.startTimeBeginMillis;
    }

    public QueryInterviewsRequest setStartTimeEndMillis(Long startTimeEndMillis) {
        this.startTimeEndMillis = startTimeEndMillis;
        return this;
    }
    public Long getStartTimeEndMillis() {
        return this.startTimeEndMillis;
    }

    public QueryInterviewsRequest setNextToken(String nextToken) {
        this.nextToken = nextToken;
        return this;
    }
    public String getNextToken() {
        return this.nextToken;
    }

    public QueryInterviewsRequest setSize(Long size) {
        this.size = size;
        return this;
    }
    public Long getSize() {
        return this.size;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy