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

com.antgroup.antchain.openapi.ak_708d6673ed844a78b9e93fb80465e6d8.models.BindDemoDemoCheckEeeRequest Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.ak_708d6673ed844a78b9e93fb80465e6d8.models;

import com.aliyun.tea.*;

public class BindDemoDemoCheckEeeRequest extends TeaModel {
    // OAuth模式下的授权token
    @NameInMap("auth_token")
    public String authToken;

    @NameInMap("product_instance_id")
    public String productInstanceId;

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

    public BindDemoDemoCheckEeeRequest setAuthToken(String authToken) {
        this.authToken = authToken;
        return this;
    }
    public String getAuthToken() {
        return this.authToken;
    }

    public BindDemoDemoCheckEeeRequest setProductInstanceId(String productInstanceId) {
        this.productInstanceId = productInstanceId;
        return this;
    }
    public String getProductInstanceId() {
        return this.productInstanceId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy