File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
from datetime import datetime
2
- from typing import Union , List
2
+ from typing import Union , List , Any
3
3
4
4
from pydantic import BaseModel , Field
5
5
@@ -338,13 +338,13 @@ class StatelessRunnerRequest(BaseModel):
338
338
operation_id : str
339
339
db_connection_params : DbConnectionParams
340
340
webhook_status_url : str
341
- webhook_metadata : Union [str , None ] = None # data what will be sent on webhook "as is"
341
+ webhook_metadata : Union [Any , None ] = None # data what will be sent on webhook "as is"
342
342
343
343
344
344
class StatelessRunnerResponse (BaseModel ):
345
345
operation_id : str
346
346
status_id : int
347
- webhook_metadata : Union [str , None ] = None # data what will be sent on webhook "as is"
347
+ webhook_metadata : Union [Any , None ] = None # data what will be sent on webhook "as is"
348
348
349
349
350
350
class DictionaryMetadata (BaseModel ):
You can’t perform that action at this time.
0 commit comments