com.aliyun.dingtalkattendance_1_0.models.GetCheckInSchemaTemplateRequest 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.dingtalkattendance_1_0.models;
import com.aliyun.tea.*;
public class GetCheckInSchemaTemplateRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* water_mark_checkin
*/
@NameInMap("bizCode")
public String bizCode;
/**
* This parameter is required.
*
* example:
* 1234567
*/
@NameInMap("openConversationId")
public String openConversationId;
/**
* example:
* water_mark_checkin
*/
@NameInMap("sceneCode")
public String sceneCode;
/**
* This parameter is required.
*
* example:
* manage123
*/
@NameInMap("userId")
public String userId;
public static GetCheckInSchemaTemplateRequest build(java.util.Map map) throws Exception {
GetCheckInSchemaTemplateRequest self = new GetCheckInSchemaTemplateRequest();
return TeaModel.build(map, self);
}
public GetCheckInSchemaTemplateRequest setBizCode(String bizCode) {
this.bizCode = bizCode;
return this;
}
public String getBizCode() {
return this.bizCode;
}
public GetCheckInSchemaTemplateRequest setOpenConversationId(String openConversationId) {
this.openConversationId = openConversationId;
return this;
}
public String getOpenConversationId() {
return this.openConversationId;
}
public GetCheckInSchemaTemplateRequest setSceneCode(String sceneCode) {
this.sceneCode = sceneCode;
return this;
}
public String getSceneCode() {
return this.sceneCode;
}
public GetCheckInSchemaTemplateRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}