mirror of
https://github.com/correl/openapi-core.git
synced 2024-11-25 03:00:11 +00:00
15 lines
410 B
Python
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
|