File tree Expand file tree Collapse file tree 2 files changed +1
-17
lines changed
Expand file tree Collapse file tree 2 files changed +1
-17
lines changed Original file line number Diff line number Diff line change 1717 HistoryPaginationResponse ,
1818 HistorySpendItemResponse ,
1919 HistorySpendResponse ,
20- HTTPValidationError ,
2120 NewHistoryCreditResponse ,
2221 ReasonResponse ,
2322 ReferenceRequest ,
2827 SpendItemResponse ,
2928 SpendResponse ,
3029 SpendSpecificCreditRequest ,
31- ValidationError ,
3230)
3331
3432__all__ = [
4442 "HistoryPaginationResponse" ,
4543 "HistorySpendItemResponse" ,
4644 "HistorySpendResponse" ,
47- "HTTPValidationError" ,
4845 "NewHistoryCreditResponse" ,
4946 "ReasonResponse" ,
5047 "ReferenceRequest" ,
5552 "SpendItemResponse" ,
5653 "SpendResponse" ,
5754 "SpendSpecificCreditRequest" ,
58- "ValidationError" ,
5955]
Original file line number Diff line number Diff line change 55"""
66
77from datetime import datetime
8- from typing import Dict , List , Optional , Union
8+ from typing import Dict , List , Optional
99
1010from pydantic import BaseModel
1111
1212
13- class ValidationError (BaseModel ):
14- """Validation error model."""
15- loc : List [Union [str , int ]]
16- msg : str
17- type : str
18-
19-
20- class HTTPValidationError (BaseModel ):
21- """HTTP validation error model."""
22- detail : List [ValidationError ]
23-
24-
2513class BalanceFilter (BaseModel ):
2614 """Filter for balance requests."""
2715 cash : Optional [bool ] = None
You can’t perform that action at this time.
0 commit comments