Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions ansys/api/geometry/v0/geometryapplication.proto
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// 2023, ANSYS Inc. Unauthorized use, distribution or duplication is prohibited.
// ©2023, ANSYS Inc. Unauthorized use, distribution or duplication is prohibited.
syntax = "proto3";
package ansys.api.geometry.v0.GeometryApplication;
option csharp_namespace = "Ansys.Api.Geometry.V0.GeometryApplication";
Expand All @@ -21,5 +21,7 @@ message RunScriptFileRequest{

message RunScriptFileResponse{
// Result of script execution. True means script executed successfully.
string run_script_response = 1;
bool success = 1;
string message = 2;
map<string,string> values = 3;
}