openapi-nexus 0.1.4

OpenAPI 3.x multi-language code generator
Documentation
// Code generated by openapi-nexus. DO NOT EDIT.
//
// Array with Reference Property Test — 1.0.0
// Test case for array of inline objects that contain a reference property

package com.example.sdk.models;

import java.util.List;

/**
 * Array of inline objects with reference property
 */
public class ArrayWithReferenceProperty {
    private List<ArrayWithReferencePropertyItemsItem> items;

    public ArrayWithReferenceProperty(List<ArrayWithReferencePropertyItemsItem> items) {
        this.items = items;
    }

    public List<ArrayWithReferencePropertyItemsItem> getItems() {
        return this.items;
    }
}