openapi-nexus 0.1.4

OpenAPI 3.x multi-language code generator
Documentation
// Code generated by openapi-nexus. DO NOT EDIT.
//
// Inline Object Test — 1.0.0
// Test case for inline objects (not arrays) with snake_case to camelCase conversion

package com.example.sdk.models;

/**
 * Object with inline object properties
 */
public class InlineObjectTest {
    private InlineObjectTestConfig config;
    private InlineObjectTestMetadata metadata;

    public InlineObjectTest(InlineObjectTestConfig config, InlineObjectTestMetadata metadata) {
        this.config = config;
        this.metadata = metadata;
    }

    public InlineObjectTestConfig getConfig() {
        return this.config;
    }

    public InlineObjectTestMetadata getMetadata() {
        return this.metadata;
    }
}