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

com.aliyun.dingtalkdoc_2_0.models.GetSchemaResponseBody 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_2_0.models;

import com.aliyun.tea.*;

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

0

*/ @NameInMap("revision") public Integer revision; /** * example: *

"{"pageVersion":"1.0.0","pageSchema":{"version":"1.0.0","componentsMap":[],"componentsTree":[]}}"

*/ @NameInMap("value") public String value; public static GetSchemaResponseBody build(java.util.Map map) throws Exception { GetSchemaResponseBody self = new GetSchemaResponseBody(); return TeaModel.build(map, self); } public GetSchemaResponseBody setRevision(Integer revision) { this.revision = revision; return this; } public Integer getRevision() { return this.revision; } public GetSchemaResponseBody setValue(String value) { this.value = value; return this; } public String getValue() { return this.value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy