I looked at django-rest-swagger project and I want to use it to document api for my project. But there is some questions on how to do it.
How to use help_text attribute on model or serializer? In the documentation it said: "Field help_text property is used to create the description from the serializer or model.". But api documentation contains only field names and field types and there is no default values description (in this example for field colour) e.g.
Response Class CigarSerializer { name (string), url (url, optional), colour (string), price (decimal), length (integer), gauge (integer), notes (string), id (integer, optional), manufacturer (field) }Can I include help_text attribute in api documentation?
Can I include serializer doc string in api documentation?