return models;
}
private Option<String> modelDescription(ResolvedType type) {
ApiModel annotation = AnnotationUtils.findAnnotation(type.getErasedType(), ApiModel.class);
if (annotation != null) {
return Option.apply(annotation.description());
}
return Option.apply("");
}