openapi-nexus 0.1.4

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 User {
    private String createdAt;
    private String email;
    private long id;
    private String name;
    private String updatedAt;

    public User(String createdAt, String email, long id, String name, String updatedAt) {
        this.createdAt = createdAt;
        this.email = email;
        this.id = id;
        this.name = name;
        this.updatedAt = updatedAt;
    }

    public String getCreatedAt() {
        return this.createdAt;
    }

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

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

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

    public String getUpdatedAt() {
        return this.updatedAt;
    }
}