Uses of Interface
io.swagger.models.Model
-
Packages that use Model Package Description io.swagger.models io.swagger.models.parameters io.swagger.models.properties io.swagger.models.utils -
-
Uses of Model in io.swagger.models
Classes in io.swagger.models that implement Model Modifier and Type Class Description class
AbstractModel
class
ArrayModel
class
BooleanValueModel
class
ComposedModel
class
ModelImpl
class
RefModel
Fields in io.swagger.models with type parameters of type Model Modifier and Type Field Description protected Map<String,Model>
Swagger. definitions
Methods in io.swagger.models that return Model Modifier and Type Method Description Model
ComposedModel. getChild()
Model
ComposedModel. getParent()
Model
Response. getResponseSchema()
Methods in io.swagger.models that return types with arguments of type Model Modifier and Type Method Description List<Model>
ComposedModel. getAllOf()
Map<String,Model>
Swagger. getDefinitions()
Methods in io.swagger.models with parameters of type Model Modifier and Type Method Description void
Swagger. addDefinition(String key, Model model)
ComposedModel
ComposedModel. child(Model model)
Swagger
Swagger. model(String name, Model model)
ComposedModel
ComposedModel. parent(Model model)
Response
Response. responseSchema(Model model)
void
ComposedModel. setChild(Model model)
void
ComposedModel. setParent(Model model)
void
Response. setResponseSchema(Model model)
Method parameters in io.swagger.models with type arguments of type Model Modifier and Type Method Description void
ComposedModel. setAllOf(List<Model> allOf)
void
Swagger. setDefinitions(Map<String,Model> definitions)
-
Uses of Model in io.swagger.models.parameters
Methods in io.swagger.models.parameters that return Model Modifier and Type Method Description Model
BodyParameter. getSchema()
Methods in io.swagger.models.parameters with parameters of type Model Modifier and Type Method Description BodyParameter
BodyParameter. schema(Model schema)
void
BodyParameter. setSchema(Model schema)
-
Uses of Model in io.swagger.models.properties
Methods in io.swagger.models.properties that return Model Modifier and Type Method Description static Model
PropertyBuilder. toModel(Property property)
Converts passed property into a model. -
Uses of Model in io.swagger.models.utils
Methods in io.swagger.models.utils that return Model Modifier and Type Method Description Model
PropertyModelConverter. propertyToModel(Property property)
Methods in io.swagger.models.utils with parameters of type Model Modifier and Type Method Description Property
PropertyModelConverter. modelToProperty(Model model)
-