openapi-nexus 0.1.4

OpenAPI 3.x multi-language code generator
Documentation
// Code generated by openapi-nexus. DO NOT EDIT.
//
// Duplicate Parameter Names Test API — 1.0.0
// Test API with duplicate parameter names across different locations

package com.example.sdk.models;

public class CreateItemWithBodyConflictRequest {
    private String description;
    private String name;

    public CreateItemWithBodyConflictRequest(String description, String name) {
        this.description = description;
        this.name = name;
    }

    public String getDescription() {
        return this.description;
    }

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