All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.swagger.codegen.CodegenResponse Maven / Gradle / Ivy

package io.swagger.codegen;

import java.util.ArrayList;
import java.util.List;
import java.util.Map;

public class CodegenResponse {
    public final List headers = new ArrayList();
    public String code, message;
    public Boolean hasMore;
    public List> examples;
    public String dataType, baseType, containerType;
    public Boolean isDefault;
    public Boolean simpleType;
    public Boolean primitiveType;
    public Boolean isMapContainer;
    public Boolean isListContainer;
    public Object schema;
    public String jsonSchema;

    public boolean isWildcard() {
        return "0".equals(code) || "default".equals(code);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy