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

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

    // 招聘流程关联实体
    @NameInMap("relationEntity")
    public String relationEntity;

    // 招聘流程关联实体标识
    @NameInMap("relationEntityId")
    public String relationEntityId;

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

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

    public GetFlowIdByRelationEntityIdRequest setRelationEntity(String relationEntity) {
        this.relationEntity = relationEntity;
        return this;
    }
    public String getRelationEntity() {
        return this.relationEntity;
    }

    public GetFlowIdByRelationEntityIdRequest setRelationEntityId(String relationEntityId) {
        this.relationEntityId = relationEntityId;
        return this;
    }
    public String getRelationEntityId() {
        return this.relationEntityId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy