com.aliyun.pds20220301.models.OfficePreviewConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pds20220301 Show documentation
Show all versions of pds20220301 Show documentation
Alibaba Cloud pds (20220301) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.pds20220301.models;
import com.aliyun.tea.*;
public class OfficePreviewConfig extends TeaModel {
@NameInMap("enabled")
public Boolean enabled;
public static OfficePreviewConfig build(java.util.Map map) throws Exception {
OfficePreviewConfig self = new OfficePreviewConfig();
return TeaModel.build(map, self);
}
public OfficePreviewConfig setEnabled(Boolean enabled) {
this.enabled = enabled;
return this;
}
public Boolean getEnabled() {
return this.enabled;
}
}