1
0
mirror of synced 2026-01-18 15:02:51 -05:00
Files
airbyte/airbyte-connector-builder-server/connector_builder/generated/models/http_request.py
Catherine Noll 4429968f42 Show http method in the connector builder test panel request tab (#20109)
Show http method in the connector builder test panel request tab
2022-12-06 15:27:59 -05:00

33 lines
970 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, validator # noqa: F401
class HttpRequest(BaseModel):
"""NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Do not edit the class manually.
HttpRequest - a model defined in OpenAPI
url: The url of this HttpRequest.
parameters: The parameters of this HttpRequest [Optional].
body: The body of this HttpRequest [Optional].
headers: The headers of this HttpRequest [Optional].
http_method: The http_method of this HttpRequest.
"""
url: str
parameters: Optional[Dict[str, Any]] = None
body: Optional[Dict[str, Any]] = None
headers: Optional[Dict[str, Any]] = None
http_method: str
HttpRequest.update_forward_refs()