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

com.aliyun.dingtalkh3yun_1_0.models.LoadBizObjectRequest 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.dingtalkh3yun_1_0.models;

import com.aliyun.tea.*;

public class LoadBizObjectRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

193f9efea-e27b-427d-bd13-e3be65e00ef9

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

This parameter is required.

* * example: *

D0001839bbbbe346bbf496498bb76c44c7eb972

*/ @NameInMap("schemaCode") public String schemaCode; public static LoadBizObjectRequest build(java.util.Map map) throws Exception { LoadBizObjectRequest self = new LoadBizObjectRequest(); return TeaModel.build(map, self); } public LoadBizObjectRequest setBizObjectId(String bizObjectId) { this.bizObjectId = bizObjectId; return this; } public String getBizObjectId() { return this.bizObjectId; } public LoadBizObjectRequest setSchemaCode(String schemaCode) { this.schemaCode = schemaCode; return this; } public String getSchemaCode() { return this.schemaCode; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy