// 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 GetAllUsersResponse200Item {
private String email;
private Long id;
private String name;
public GetAllUsersResponse200Item(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;
}
}