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

com.aliyun.dingtalkapp_market_1_0.models.GetCoolAppAccessStatusRequest Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkapp_market_1_0.models;

import com.aliyun.tea.*;

public class GetCoolAppAccessStatusRequest extends TeaModel {
    // 免登授权码
    @NameInMap("authCode")
    public String authCode;

    // 酷应用的code
    @NameInMap("coolAppCode")
    public String coolAppCode;

    // 加密的场域业务code
    @NameInMap("encFieldBizCode")
    public String encFieldBizCode;

    public static GetCoolAppAccessStatusRequest build(java.util.Map map) throws Exception {
        GetCoolAppAccessStatusRequest self = new GetCoolAppAccessStatusRequest();
        return TeaModel.build(map, self);
    }

    public GetCoolAppAccessStatusRequest setAuthCode(String authCode) {
        this.authCode = authCode;
        return this;
    }
    public String getAuthCode() {
        return this.authCode;
    }

    public GetCoolAppAccessStatusRequest setCoolAppCode(String coolAppCode) {
        this.coolAppCode = coolAppCode;
        return this;
    }
    public String getCoolAppCode() {
        return this.coolAppCode;
    }

    public GetCoolAppAccessStatusRequest setEncFieldBizCode(String encFieldBizCode) {
        this.encFieldBizCode = encFieldBizCode;
        return this;
    }
    public String getEncFieldBizCode() {
        return this.encFieldBizCode;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy