openapi-nexus 0.1.4

OpenAPI 3.x multi-language code generator
Documentation
// Code generated by openapi-nexus. DO NOT EDIT.
//
// Naming Conventions Test — 1.0.0
// Test fixture to verify language property naming conventions

package com.example.sdk.models;

import com.google.gson.annotations.SerializedName;

public class NamingConventionTestNestedObject {
    @SerializedName("NestedPascalCase")
    private String nestedPascalCase;
    @SerializedName("nested-kebab-case")
    private String nestedKebabCase;
    private String nestedCamelCase;
    @SerializedName("nested_snake_case")
    private String nestedSnakeCase;

    public NamingConventionTestNestedObject(String nestedPascalCase, String nestedKebabCase,
    String nestedCamelCase, String nestedSnakeCase) {
        this.nestedPascalCase = nestedPascalCase;
        this.nestedKebabCase = nestedKebabCase;
        this.nestedCamelCase = nestedCamelCase;
        this.nestedSnakeCase = nestedSnakeCase;
    }

    public String getNestedPascalCase() {
        return this.nestedPascalCase;
    }

    public String getNestedKebabCase() {
        return this.nestedKebabCase;
    }

    public String getNestedCamelCase() {
        return this.nestedCamelCase;
    }

    public String getNestedSnakeCase() {
        return this.nestedSnakeCase;
    }
}