openapi-nexus 0.1.4

OpenAPI 3.x multi-language code generator
Documentation
// Code generated by openapi-nexus. DO NOT EDIT.
//
// Complex Array Structure Test — 1.0.0
// Test case for array of inline objects where each object has nested inline objects

package com.example.sdk.models;

import java.util.List;

import com.google.gson.annotations.SerializedName;

public class ComplexArrayStructureItemsItemMetadata {
    @SerializedName("created_at")
    private String createdAt;
    private List<String> tags;

    public ComplexArrayStructureItemsItemMetadata(String createdAt, List<String> tags) {
        this.createdAt = createdAt;
        this.tags = tags;
    }

    public String getCreatedAt() {
        return this.createdAt;
    }

    public List<String> getTags() {
        return this.tags;
    }
}