We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a145e3a commit 42e37ddCopy full SHA for 42e37dd
README.md
@@ -93,6 +93,7 @@ A property may be NULL or 0 if the field was NULL or not listed in the API's res
93
public Header Header { get; set; }
94
public bool HasErrorOccurred { get; set; }
95
public List<Error> Errors { get; set; }
96
+public Wrapper Wrapper { get; set; }
97
98
public class Header
99
{
@@ -105,6 +106,13 @@ public class Error
105
106
public string field { get; set; }
107
public string message { get; set; }
108
}
109
+
110
+public class Wrapper
111
+{
112
+ public int ApiPassCount { get; set; }
113
+ public string ApiCommandUrl { get; set; }
114
+ public string ApiRawResponse { get; set; }
115
+}
116
```
117
118
##### Info
0 commit comments