25 lines
672 B
Python
25 lines
672 B
Python
# coding: utf-8
|
|
|
|
from __future__ import annotations
|
|
from datetime import date, datetime # noqa: F401
|
|
|
|
import re # noqa: F401
|
|
from typing import Any, Dict, List, Optional # noqa: F401
|
|
|
|
from pydantic import AnyUrl, BaseModel, EmailStr, Field, validator # noqa: F401
|
|
|
|
|
|
class PutOpenvpnRequest(BaseModel):
|
|
"""NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
|
|
Do not edit the class manually.
|
|
|
|
PutOpenvpnRequest - a model defined in OpenAPI
|
|
|
|
config: The config of this PutOpenvpnRequest [Optional].
|
|
"""
|
|
|
|
config: Optional[str] = Field(alias="config", default=None)
|
|
|
|
PutOpenvpnRequest.update_forward_refs()
|