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

com.aliyun.cloud_siem20220616.models.DescribeAutomateResponseConfigPlayBooksResponse Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class DescribeAutomateResponseConfigPlayBooksResponse extends TeaModel {
    @NameInMap("headers")
    @Validation(required = true)
    public java.util.Map headers;

    @NameInMap("statusCode")
    @Validation(required = true)
    public Integer statusCode;

    @NameInMap("body")
    @Validation(required = true)
    public DescribeAutomateResponseConfigPlayBooksResponseBody body;

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

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

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

    public DescribeAutomateResponseConfigPlayBooksResponse setBody(DescribeAutomateResponseConfigPlayBooksResponseBody body) {
        this.body = body;
        return this;
    }
    public DescribeAutomateResponseConfigPlayBooksResponseBody getBody() {
        return this.body;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy