// Code generated by openapi-nexus. DO NOT EDIT.
//
// Petstore API — 1.0.0
// This is a sample Pet Store Server based on the OpenAPI 3.1 specification
package com.example.sdk.models;
/**
* Upload response model
*/
public class UploadResponse {
private Integer code;
private String message;
private String type;
public UploadResponse(Integer code, String message, String type) {
this.code = code;
this.message = message;
this.type = type;
}
public Integer getCode() {
return this.code;
}
public String getMessage() {
return this.message;
}
public String getType() {
return this.type;
}
}