openapi-nexus 0.1.3

OpenAPI 3.x multi-language code generator
Documentation
// Code generated by openapi-nexus. DO NOT EDIT.
//
// Test API with DELETE Response Schema — 1.0.0
// Test fixture for DELETE operations with JSON response schemas and type alias request bodies

package com.example.sdk.models;

import com.google.gson.annotations.SerializedName;

/**
 * Response after creating a test resource
 */
public class CreateTestResourceResponse {
    @SerializedName("resource_id")
    private String resourceId;

    public CreateTestResourceResponse(String resourceId) {
        this.resourceId = resourceId;
    }

    public String getResourceId() {
        return this.resourceId;
    }
}