openapi-nexus 0.1.3

OpenAPI 3.x multi-language code generator
Documentation
// Code generated by openapi-nexus. DO NOT EDIT.
//
// Test API with Server Objects — 1.0.0
// This is a test API specification that includes various server configurations

package com.example.sdk.models;

public class GetUserByIdResponse200 {
    private String email;
    private Long id;
    private String name;

    public GetUserByIdResponse200(String email, Long id, String name) {
        this.email = email;
        this.id = id;
        this.name = name;
    }

    public String getEmail() {
        return this.email;
    }

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

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