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

com.aliyun.dingtalkconnector_1_0.models.SearchActionsResponse Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class SearchActionsResponse extends TeaModel {
    @NameInMap("headers")
    public java.util.Map headers;

    @NameInMap("statusCode")
    public Integer statusCode;

    @NameInMap("body")
    public SearchActionsResponseBody body;

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

    public SearchActionsResponse setHeaders(java.util.Map headers) {
        this.headers = headers;
        return this;
    }
    public java.util.Map getHeaders() {
        return this.headers;
    }

    public SearchActionsResponse setStatusCode(Integer statusCode) {
        this.statusCode = statusCode;
        return this;
    }
    public Integer getStatusCode() {
        return this.statusCode;
    }

    public SearchActionsResponse setBody(SearchActionsResponseBody body) {
        this.body = body;
        return this;
    }
    public SearchActionsResponseBody getBody() {
        return this.body;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy