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

com.aliyun.pds20220301.models.OfficePreviewConfig Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
// 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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy