You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Authorization code. Used during an `authorization_code` grant type flow, to request an access_token when creating/updating the authentication. This field is not returned in the API response.
57
+
/// </summary>
58
+
/// <value>Authorization code. Used during an `authorization_code` grant type flow, to request an access_token when creating/updating the authentication. This field is not returned in the API response. </value>
59
+
[JsonPropertyName("code")]
60
+
publicstringCode{get;set;}
61
+
59
62
/// <summary>
60
63
/// OAuth scope.
61
64
/// </summary>
@@ -74,6 +77,7 @@ public override string ToString()
Copy file name to clipboardExpand all lines: algoliasearch/Models/Ingestion/AuthOAuthPartial.cs
+13Lines changed: 13 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -42,6 +42,13 @@ public AuthOAuthPartial() { }
42
42
[JsonPropertyName("client_secret")]
43
43
publicstringClientSecret{get;set;}
44
44
45
+
/// <summary>
46
+
/// Authorization code. Used during an `authorization_code` grant type flow, to request an access_token when creating/updating the authentication. This field is not returned in the API response.
47
+
/// </summary>
48
+
/// <value>Authorization code. Used during an `authorization_code` grant type flow, to request an access_token when creating/updating the authentication. This field is not returned in the API response. </value>
49
+
[JsonPropertyName("code")]
50
+
publicstringCode{get;set;}
51
+
45
52
/// <summary>
46
53
/// OAuth scope.
47
54
/// </summary>
@@ -60,6 +67,7 @@ public override string ToString()
0 commit comments