openapi-nexus 0.1.2

OpenAPI 3.x multi-language code generator
Documentation
// Code generated by openapi-nexus. DO NOT EDIT.
//
// Enum Representation API — 1.0.0
// This API demonstrates all 4 kinds of enum representation types: Externally Tagged, Internally Tagged, Adjacently Tagged, and Untagged

package com.example.sdk.models;

import com.google.gson.annotations.SerializedName;

/**
 * Tuple variant with VariantB payload
 */
public class MixedEnumMember4 {
    @SerializedName("VariantB")
    private VariantB variantB;

    public MixedEnumMember4(VariantB variantB) {
        this.variantB = variantB;
    }

    public VariantB getVariantB() {
        return this.variantB;
    }
}