We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4b2257 commit ca52067Copy full SHA for ca52067
src/increase/types/ach_transfer.py
@@ -4,7 +4,7 @@
4
from datetime import datetime
5
from typing_extensions import Literal
6
7
-from pydantic import Field
+from pydantic import Field as FieldInfo
8
9
from .._models import BaseModel
10
@@ -171,7 +171,7 @@ class ACHTransfer(BaseModel):
171
should use different details, this will contain those details.
172
"""
173
174
- return_: Optional[Return] = Field(alias="return")
+ return_: Optional[Return] = FieldInfo(alias="return")
175
"""If your transfer is returned, this will contain details of the return."""
176
177
routing_number: str
0 commit comments