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

com.aliyun.dingtalkstorage_1_0.models.GetDentryOpenInfoRequest 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.dingtalkstorage_1_0.models;

import com.aliyun.tea.*;

public class GetDentryOpenInfoRequest extends TeaModel {
    @NameInMap("option")
    public GetDentryOpenInfoRequestOption option;

    /**
     * 

This parameter is required.

* * example: *

union_id

*/ @NameInMap("unionId") public String unionId; public static GetDentryOpenInfoRequest build(java.util.Map map) throws Exception { GetDentryOpenInfoRequest self = new GetDentryOpenInfoRequest(); return TeaModel.build(map, self); } public GetDentryOpenInfoRequest setOption(GetDentryOpenInfoRequestOption option) { this.option = option; return this; } public GetDentryOpenInfoRequestOption getOption() { return this.option; } public GetDentryOpenInfoRequest setUnionId(String unionId) { this.unionId = unionId; return this; } public String getUnionId() { return this.unionId; } public static class GetDentryOpenInfoRequestOption extends TeaModel { /** * example: *

true

*/ @NameInMap("checkLogin") public Boolean checkLogin; /** * example: *

PREVIEW

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

1

*/ @NameInMap("version") public Long version; /** * example: *

true

*/ @NameInMap("waterMark") public Boolean waterMark; public static GetDentryOpenInfoRequestOption build(java.util.Map map) throws Exception { GetDentryOpenInfoRequestOption self = new GetDentryOpenInfoRequestOption(); return TeaModel.build(map, self); } public GetDentryOpenInfoRequestOption setCheckLogin(Boolean checkLogin) { this.checkLogin = checkLogin; return this; } public Boolean getCheckLogin() { return this.checkLogin; } public GetDentryOpenInfoRequestOption setType(String type) { this.type = type; return this; } public String getType() { return this.type; } public GetDentryOpenInfoRequestOption setVersion(Long version) { this.version = version; return this; } public Long getVersion() { return this.version; } public GetDentryOpenInfoRequestOption setWaterMark(Boolean waterMark) { this.waterMark = waterMark; return this; } public Boolean getWaterMark() { return this.waterMark; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy