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