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

com.aliyun.dingtalkattendance_1_0.models.GetCheckInSchemaTemplateRequest 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.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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy