blob: 21a232a2e5a717dc8c87c702f695b322eef09503 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
from __future__ import annotations
import dataclasses
from typing import Optional
@dataclasses.dataclass
class Security:
api_key_auth: Optional[str] = dataclasses.field(default=None, metadata={'security': { 'scheme': True, 'type': 'apiKey', 'sub_type': 'header', 'field_name': 'unstructured-api-key' }})
|