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

com.aliyun.dingtalkdoc_1_0.models.CreateSheetResponseBody 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.dingtalkdoc_1_0.models;

import com.aliyun.tea.*;

public class CreateSheetResponseBody extends TeaModel {
    /**
     * example:
     * 

sheet_id

*/ @NameInMap("id") public String id; /** * example: *

sheet_name

*/ @NameInMap("name") public String name; /** * example: *

visible

*/ @NameInMap("visibility") public String visibility; public static CreateSheetResponseBody build(java.util.Map map) throws Exception { CreateSheetResponseBody self = new CreateSheetResponseBody(); return TeaModel.build(map, self); } public CreateSheetResponseBody setId(String id) { this.id = id; return this; } public String getId() { return this.id; } public CreateSheetResponseBody setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public CreateSheetResponseBody setVisibility(String visibility) { this.visibility = visibility; return this; } public String getVisibility() { return this.visibility; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy