com.aliyun.dingtalkhrm_1_0.models.HrmMokaEventRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkhrm_1_0.models;
import com.aliyun.tea.*;
public class HrmMokaEventRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* /user/role/get
*/
@NameInMap("bizId")
public String bizId;
/**
* This parameter is required.
*
* example:
* {"a":"b"}
*/
@NameInMap("content")
public String content;
public static HrmMokaEventRequest build(java.util.Map map) throws Exception {
HrmMokaEventRequest self = new HrmMokaEventRequest();
return TeaModel.build(map, self);
}
public HrmMokaEventRequest setBizId(String bizId) {
this.bizId = bizId;
return this;
}
public String getBizId() {
return this.bizId;
}
public HrmMokaEventRequest setContent(String content) {
this.content = content;
return this;
}
public String getContent() {
return this.content;
}
}