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
/// The endpoints for the OAuth application that will be created for this app to use in the <see href="https://developer.4me.com/v1/oauth/authorization_code_grant/">Authorization Code Grant flow</see>.
/// The <see href="https://developer.4me.com/graphql/input_object/appofferingautomationruledeletemutationinput/">AppOfferingAutomationRuleDeleteMutationInput</see> object.
/// The <see href="https://developer.4me.com/graphql/object/appofferingautomationruledeletemutationpayload/">AppOfferingAutomationRuleDeleteMutationPayload</see> object.
/// A unique identifier for the client performing the mutation.
34
46
/// </summary>
@@ -119,6 +131,16 @@ public List<AppOfferingScopeInput>? NewScopes
119
131
set=>newScopes=Set("newScopes",value);
120
132
}
121
133
134
+
/// <summary>
135
+
/// The endpoints for the OAuth application that will be created for this app to use in the <see href="https://developer.4me.com/v1/oauth/authorization_code_grant/">Authorization Code Grant flow</see>.
Copy file name to clipboardExpand all lines: Scr/Sdk4me.GraphQL/Entities/AppOfferingScope.cs
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,12 @@ public class AppOfferingScope : Node
26
26
[JsonProperty("effect")]
27
27
publicScopeEffect?Effect{get;internalset;}
28
28
29
+
/// <summary>
30
+
/// Whether this scope is for the app's OAuth application using <see href="https://developer.4me.com/v1/oauth/client_credentials_grant/">client credentials</see> or <see href="https://developer.4me.com/v1/oauth/authorization_code_grant/">authorization code grant</see>.
Copy file name to clipboardExpand all lines: Scr/Sdk4me.GraphQL/Entities/AppOfferingScopeInput.cs
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,7 @@ public class AppOfferingScopeInput : PropertyChangeSet
11
11
privateList<string>?actions;
12
12
privateList<string>?conditions;
13
13
privateScopeEffect?effect;
14
+
privateOauthApplicationGrantType?grantType;
14
15
privatestring?id;
15
16
16
17
/// <summary>
@@ -43,6 +44,16 @@ public ScopeEffect? Effect
43
44
set=>effect=Set("effect",value);
44
45
}
45
46
47
+
/// <summary>
48
+
/// Whether this scope is for the app's OAuth application using <see href="https://developer.4me.com/v1/oauth/client_credentials_grant/">client credentials</see> or <see href="https://developer.4me.com/v1/oauth/authorization_code_grant/">authorization code grant</see>.
49
+
/// </summary>
50
+
[JsonProperty("grantType")]
51
+
publicOauthApplicationGrantType?GrantType
52
+
{
53
+
get=>grantType;
54
+
set=>grantType=Set("grantType",value);
55
+
}
56
+
46
57
/// <summary>
47
58
/// Identifier of the object to update using these values. For new objects it should be <c>null</c>.
/// A unique identifier for the client performing the mutation.
36
48
/// </summary>
@@ -131,6 +143,16 @@ public List<AppOfferingScopeInput>? NewScopes
131
143
set=>newScopes=Set("newScopes",value);
132
144
}
133
145
146
+
/// <summary>
147
+
/// The endpoints for the OAuth application that will be created for this app to use in the <see href="https://developer.4me.com/v1/oauth/authorization_code_grant/">Authorization Code Grant flow</see>.
0 commit comments