com.aliyun.neuron20211115.models.DeleteLibraryInstructionResponse Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.neuron20211115.models;
import com.aliyun.tea.*;
public class DeleteLibraryInstructionResponse extends TeaModel {
@NameInMap("headers")
@Validation(required = true)
public java.util.Map headers;
@NameInMap("statusCode")
@Validation(required = true)
public Integer statusCode;
public static DeleteLibraryInstructionResponse build(java.util.Map map) throws Exception {
DeleteLibraryInstructionResponse self = new DeleteLibraryInstructionResponse();
return TeaModel.build(map, self);
}
public DeleteLibraryInstructionResponse setHeaders(java.util.Map headers) {
this.headers = headers;
return this;
}
public java.util.Map getHeaders() {
return this.headers;
}
public DeleteLibraryInstructionResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
}