Skip to content

Commit

Permalink
- Add protocol property to objects for api remote call. (#774)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlejandroP authored Apr 29, 2023
1 parent 18ca9f3 commit 01bf255
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ namespace GeneXus.Application
public class GxObjectProperties
{
private GxLocation location = null;
private string protocol = "rest";
private string errorMessage = String.Empty;
private int errorCode = 0;
private int statusCode = 0;
Expand All @@ -18,6 +19,7 @@ public class GxObjectProperties
public string ErrorMessage { get => errorMessage; set => errorMessage = value; }
public int ErrorCode { get => errorCode; set => errorCode = value; }
public int StatusCode { get => statusCode; set => statusCode = value; }
public string Protocol { get => protocol; set => protocol = value; }
}

public class GxObjectsConfiguration {
Expand Down

0 comments on commit 01bf255

Please sign in to comment.