// Code generated by openapi-nexus. DO NOT EDIT.
//
// Test API with DELETE Response Schema — 1.0.0
// Test fixture for DELETE operations with JSON response schemas and type alias request bodies
package com.example.sdk.models;
/**
* Response after deleting a test resource
*/
public class DeleteTestResourceResponse {
private String message;
private boolean success;
public DeleteTestResourceResponse(String message, boolean success) {
this.message = message;
this.success = success;
}
public String getMessage() {
return this.message;
}
public boolean getSuccess() {
return this.success;
}
}