openapi-nexus 0.1.4

OpenAPI 3.x multi-language code generator
Documentation
// Code generated by openapi-nexus. DO NOT EDIT.
//
// Query Parameter Enum Test — 1.0.0
// Test case for query parameters that reference enum schemas

package com.example.sdk.models;

public class GetItemsResponse200ItemsItem {
    private String id;
    private String name;

    public GetItemsResponse200ItemsItem(String id, String name) {
        this.id = id;
        this.name = name;
    }

    public String getId() {
        return this.id;
    }

    public String getName() {
        return this.name;
    }
}