Generator Changes at 11/16/2025 3:28:55 AM +03:30

This commit is contained in:
masoodafar-web
2025-11-16 03:31:23 +03:30
parent eed625c722
commit 32ee9a03dc
4 changed files with 15 additions and 4 deletions

View File

@@ -60,7 +60,7 @@ service UserContract
body: "*"
};
};
rpc AcceptContract(AcceptContractRequest) returns (google.protobuf.Empty){
rpc AcceptContract(AcceptContractRequest) returns (AcceptContractRequestResponse){
option (google.api.http) = {
post: "/AcceptContract"
body: "*"
@@ -201,6 +201,10 @@ message AcceptContractRequest
string contract_html = 2;
string sign_guid = 3;
}
message AcceptContractRequestResponse
{
string token = 1;
}
message PaginationState
{