// Code generated by openapi-nexus. DO NOT EDIT.
//
// Comprehensive Schema Types Example — 1.0.0
// Comprehensive test for all OpenAPI v3.1.2 schema types
package com.example.sdk.models;
/**
* Object without properties
*/
public class EmptyObject {
private Object value;
public EmptyObject(Object value) {
this.value = value;
}
public Object getValue() {
return this.value;
}
}