// 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;
/**
* Nullable string type (OpenAPI 3.1.2 style)
*/
public class NullableString {
private String value;
public NullableString(String value) {
this.value = value;
}
public String getValue() {
return this.value;
}
}