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

com.aliyun.aliding20230426.models.SendSearchShadeHeaders Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;

import com.aliyun.tea.*;

public class SendSearchShadeHeaders extends TeaModel {
    @NameInMap("commonHeaders")
    public java.util.Map commonHeaders;

    @NameInMap("AccountContext")
    public SendSearchShadeHeadersAccountContext accountContext;

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

    public SendSearchShadeHeaders setCommonHeaders(java.util.Map commonHeaders) {
        this.commonHeaders = commonHeaders;
        return this;
    }
    public java.util.Map getCommonHeaders() {
        return this.commonHeaders;
    }

    public SendSearchShadeHeaders setAccountContext(SendSearchShadeHeadersAccountContext accountContext) {
        this.accountContext = accountContext;
        return this;
    }
    public SendSearchShadeHeadersAccountContext getAccountContext() {
        return this.accountContext;
    }

    public static class SendSearchShadeHeadersAccountContext extends TeaModel {
        @NameInMap("accountId")
        public String accountId;

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

        public SendSearchShadeHeadersAccountContext setAccountId(String accountId) {
            this.accountId = accountId;
            return this;
        }
        public String getAccountId() {
            return this.accountId;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy