| # This file was auto-generated by Fern from our API Definition. | |
| import typing_extensions | |
| from ..types.error_code2 import ErrorCode2 | |
| class ErrorDetails2Params(typing_extensions.TypedDict): | |
| message: str | |
| """ | |
| Message describing the error | |
| """ | |
| code: ErrorCode2 | |
| """ | |
| Error code for the specific error that has occured. Refer to the error code documentation for more details. | |
| """ | |
| request_id: typing_extensions.NotRequired[str] | |
| """ | |
| Unique identifier for the request. Format: date_UUID4 | |
| """ | |