forked from loafle/openapi-generator-original
		
	
		
			
				
	
	
		
			38 lines
		
	
	
		
			801 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			801 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/**
 | 
						|
 * OpenAPI Petstore
 | 
						|
 * This is a sample server Petstore server. For this sample, you can use the api key `special-key` to test the authorization filters.
 | 
						|
 *
 | 
						|
 * OpenAPI spec version: 1.0.0
 | 
						|
 * 
 | 
						|
 *
 | 
						|
 * NOTE: This class is auto generated by OpenAPI Generator
 | 
						|
 * https://github.com/OpenAPITools/openapi-generator
 | 
						|
 * Do not edit the class manually.
 | 
						|
 */
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include "OpenAPIBaseModel.h"
 | 
						|
 | 
						|
namespace OpenAPI
 | 
						|
{
 | 
						|
 | 
						|
/*
 | 
						|
 * OpenAPIApiResponse
 | 
						|
 *
 | 
						|
 * Describes the result of uploading an image resource
 | 
						|
 */
 | 
						|
class OPENAPI_API OpenAPIApiResponse : public Model
 | 
						|
{
 | 
						|
public:
 | 
						|
    virtual ~OpenAPIApiResponse() {}
 | 
						|
	bool FromJson(const TSharedPtr<FJsonValue>& JsonValue) final;
 | 
						|
	void WriteJson(JsonWriter& Writer) const final;
 | 
						|
 | 
						|
	TOptional<int32> Code;
 | 
						|
	TOptional<FString> Type;
 | 
						|
	TOptional<FString> Message;
 | 
						|
};
 | 
						|
 | 
						|
}
 |