openapi-core/openapi_core/schema/infos/models.py
2020-02-03 19:50:21 +00:00

15 lines
410 B
Python

"""OpenAPI core infos models module"""
class Info(object):
def __init__(
self, title, version, description=None, terms_of_service=None,
contact=None, license=None,
):
self.title = title
self.version = version
self.description = description
self.terms_of_service = terms_of_service
self.contact = contact
self.license = license