openapi-nexus 0.1.3

OpenAPI 3.x multi-language code generator
Documentation
// 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;

/**
 * Array with minimum items constraint
 */
public class ArrayWithMinItems {
    private List<String> value;

    public ArrayWithMinItems(List<String> value) {
        this.value = value;
    }

    public List<String> getValue() {
        return this.value;
    }
}