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

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

There is a newer version: 2.1.67
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 UpdateJobDeliverRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

ddats

*/ @NameInMap("bizCode") public String bizCode; /** *

This parameter is required.

* * example: *

channelOuterId

*/ @NameInMap("channelOuterId") public String channelOuterId; /** *

This parameter is required.

* * example: *

27016066248xxxxx

*/ @NameInMap("deliverUserId") public String deliverUserId; /** * example: *

ATS001

*/ @NameInMap("errorCode") public String errorCode; /** * example: *

职位审核不通过

*/ @NameInMap("errorMsg") public String errorMsg; /** *

This parameter is required.

* * example: *

1666780239981

*/ @NameInMap("opTime") public Long opTime; /** * example: *

27016066248xxxxx

*/ @NameInMap("opUserId") public String opUserId; /** *

This parameter is required.

* * example: *

1

*/ @NameInMap("status") public Integer status; /** *

This parameter is required.

* * example: *

jobId23ed0d46548f4e88a7b808d3f3057xxx

*/ @NameInMap("jobId") public String jobId; public static UpdateJobDeliverRequest build(java.util.Map map) throws Exception { UpdateJobDeliverRequest self = new UpdateJobDeliverRequest(); return TeaModel.build(map, self); } public UpdateJobDeliverRequest setBizCode(String bizCode) { this.bizCode = bizCode; return this; } public String getBizCode() { return this.bizCode; } public UpdateJobDeliverRequest setChannelOuterId(String channelOuterId) { this.channelOuterId = channelOuterId; return this; } public String getChannelOuterId() { return this.channelOuterId; } public UpdateJobDeliverRequest setDeliverUserId(String deliverUserId) { this.deliverUserId = deliverUserId; return this; } public String getDeliverUserId() { return this.deliverUserId; } public UpdateJobDeliverRequest setErrorCode(String errorCode) { this.errorCode = errorCode; return this; } public String getErrorCode() { return this.errorCode; } public UpdateJobDeliverRequest setErrorMsg(String errorMsg) { this.errorMsg = errorMsg; return this; } public String getErrorMsg() { return this.errorMsg; } public UpdateJobDeliverRequest setOpTime(Long opTime) { this.opTime = opTime; return this; } public Long getOpTime() { return this.opTime; } public UpdateJobDeliverRequest setOpUserId(String opUserId) { this.opUserId = opUserId; return this; } public String getOpUserId() { return this.opUserId; } public UpdateJobDeliverRequest setStatus(Integer status) { this.status = status; return this; } public Integer getStatus() { return this.status; } public UpdateJobDeliverRequest setJobId(String jobId) { this.jobId = jobId; return this; } public String getJobId() { return this.jobId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy