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

com.aliyun.neuron20211115.models.CreatePdpPbcResponse Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class CreatePdpPbcResponse 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 PdpPbc body;

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

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

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

    public CreatePdpPbcResponse setBody(PdpPbc body) {
        this.body = body;
        return this;
    }
    public PdpPbc getBody() {
        return this.body;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy