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("");
}
private Iterable<? extends com.mangofactory.swagger.models.property.ModelProperty> properties(ModelContext context,