// Code generated by openapi-nexus. DO NOT EDIT.
//
// Comprehensive Schema Types Example — 1.0.0
// Comprehensive test for all OpenAPI v3.1.2 schema types
package com.example.sdk.models;
/**
* 64-bit integer
*/
public class Integer64 {
private long value;
public Integer64(long value) {
this.value = value;
}
public long getValue() {
return this.value;
}
}