We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c27350e commit 3b01ef5Copy full SHA for 3b01ef5
1 file changed
cuenca_validations/types/requests.py
@@ -77,6 +77,7 @@ class TransferRequest(BaseRequest):
77
descriptor: StrictStr
78
idempotency_key: str
79
user_id: Optional[str]
80
+ platform_id: Optional[str]
81
82
class Config:
83
fields = {
@@ -91,6 +92,7 @@ class Config:
91
92
'description': 'Custom Id, must be unique for each transfer'
93
},
94
'user_id': {'description': 'source user to take the funds'},
95
+ 'platform_id': {'description': 'platform id to take the funds'},
96
}
97
schema_extra = {
98
'example': {
@@ -100,6 +102,7 @@ class Config:
100
102
'descriptor': 'Mezcal, pulque y tequila',
101
103
'idempotency_key': 'UNIQUE-KEY-003',
104
'user_id': 'USWqY5cvkISJOxHyEKjAKf8w',
105
+ 'platform_id': 'PTZbBlk__kQt-wfwzP5nwA9A',
106
107
108
0 commit comments