""" Contains some shared types for properties """ from typing import ( BinaryIO, Generic, MutableMapping, Optional, TextIO, Tuple, TypeVar, Union, ) import attr class Unset: def __bool__(self) -> bool: return False UNSET: Unset = Unset() FileJsonType = Tuple[Optional[str], Union[BinaryIO, TextIO], Optional[str]] @attr.s(auto_attribs=True) class File: """Contains information for file uploads""" payload: Union[BinaryIO, TextIO] file_name: Optional[str] = None mime_type: Optional[str] = None def to_tuple(self) -> FileJsonType: """Return a tuple representation that httpx will accept for multipart/form-data""" # noqa: E501 return self.file_name, self.payload, self.mime_type T = TypeVar("T") @attr.s(auto_attribs=True) class Response(Generic[T]): """A response from an endpoint""" # noqa: E501 status_code: int content: bytes headers: MutableMapping[str, str] parsed: Optional[T] __all__ = ["File", "Response", "FileJsonType"]