gns3-server/gns3server/schemas/iou_license.py

25 lines
945 B
Python
Raw Normal View History

2020-10-02 16:07:50 +09:30
# -*- coding: utf-8 -*-
2015-03-20 17:09:53 +05:30
#
2020-10-02 16:07:50 +09:30
# Copyright (C) 2018 GNS3 Technologies Inc.
2015-03-20 17:09:53 +05:30
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
2020-10-02 16:07:50 +09:30
from pydantic import BaseModel, Field
2015-03-20 17:09:53 +05:30
2020-10-02 16:07:50 +09:30
class IOULicense(BaseModel):
2020-10-02 16:07:50 +09:30
iourc_content: str = Field(..., description="Content of iourc file")
license_check: bool = Field(..., description="Whether the license must be checked or not")