// Code generated by openapi-nexus. DO NOT EDIT.
//
// Inline Object Test — 1.0.0
// Test case for inline objects (not arrays) with snake_case to camelCase conversion
package com.example.sdk.models;
import com.google.gson.annotations.SerializedName;
public class InlineObjectTestConfig {
@SerializedName("max_retry_count")
private Integer maxRetryCount;
@SerializedName("timeout_seconds")
private Double timeoutSeconds;
public InlineObjectTestConfig(Integer maxRetryCount, Double timeoutSeconds) {
this.maxRetryCount = maxRetryCount;
this.timeoutSeconds = timeoutSeconds;
}
public Integer getMaxRetryCount() {
return this.maxRetryCount;
}
public Double getTimeoutSeconds() {
return this.timeoutSeconds;
}
}