File tree Expand file tree Collapse file tree 3 files changed +5
-15
lines changed Expand file tree Collapse file tree 3 files changed +5
-15
lines changed Original file line number Diff line number Diff line change @@ -525,17 +525,13 @@ operation SignContract {
525
525
}
526
526
527
527
structure SignContractInput {
528
- @required
529
- contractId : ContractId
530
528
@required
531
529
signerName : String
532
- @required
533
- signerEmail : String
534
- signingDate : String
530
+
535
531
}
536
532
537
533
structure SignContractOutput {
538
534
@required
539
- success : Boolean
535
+ success : String
540
536
message : String
541
537
}
Original file line number Diff line number Diff line change 1
1
# generated by datamodel-codegen:
2
2
# filename: api.json
3
- # timestamp: 2025-05-17T19:00:48 +00:00
3
+ # timestamp: 2025-05-20T21:49:24 +00:00
4
4
5
5
from __future__ import annotations
6
6
@@ -119,14 +119,11 @@ class SharedUserDetails(BaseModel):
119
119
120
120
121
121
class SignContractRequestContent (BaseModel ):
122
- contractId : str = Field (..., pattern = '^[A-Za-z0-9-]+$' )
123
122
signerName : str
124
- signerEmail : str
125
- signingDate : Optional [str ] = None
126
123
127
124
128
125
class SignContractResponseContent (BaseModel ):
129
- success : bool
126
+ success : str
130
127
message : Optional [str ] = None
131
128
132
129
Original file line number Diff line number Diff line change @@ -333,13 +333,10 @@ export interface components {
333
333
sharedTime : number ;
334
334
} ;
335
335
SignContractRequestContent : {
336
- contractId : string ;
337
336
signerName : string ;
338
- signerEmail : string ;
339
- signingDate ?: string ;
340
337
} ;
341
338
SignContractResponseContent : {
342
- success : boolean ;
339
+ success : string ;
343
340
message ?: string ;
344
341
} ;
345
342
UpdateContractRequestContent : {
You can’t perform that action at this time.
0 commit comments