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
/// Human-readable name of the protected resource intended for display to the end user.
86
+
/// Gets or sets the human-readable name of the protected resource intended for display to the end user.
72
87
/// </summary>
73
88
/// <remarks>
74
89
/// RECOMMENDED. It is recommended that protected resource metadata include this field.
@@ -78,26 +93,32 @@ public sealed class ProtectedResourceMetadata
78
93
publicstring?ResourceName{get;set;}
79
94
80
95
/// <summary>
81
-
/// The URI to the resource documentation.
96
+
/// Gets or sets the URI to the resource documentation.
82
97
/// </summary>
83
-
/// <remarks>
84
-
/// OPTIONAL. URL of a page containing human-readable information that developers might want or need to know
98
+
/// <value>
99
+
/// The URL of a page containing human-readable information that developers might want or need to know
85
100
/// when using the protected resource.
101
+
/// </value>
102
+
/// <remarks>
103
+
/// OPTIONAL.
86
104
/// </remarks>
87
105
[JsonPropertyName("resource_documentation")]
88
106
publicUri?ResourceDocumentation{get;set;}
89
107
90
108
/// <summary>
91
-
/// URL of a page containing human-readable information about the protected resource's requirements.
109
+
/// Gets or sets the URL of a page containing human-readable information about the protected resource's requirements.
92
110
/// </summary>
111
+
/// <value>
112
+
/// The URL of a page that contains information about how the client can use the data provided by the protected resource.
113
+
/// </value>
93
114
/// <remarks>
94
-
/// OPTIONAL. Information about how the client can use the data provided by the protected resource.
115
+
/// OPTIONAL.
95
116
/// </remarks>
96
117
[JsonPropertyName("resource_policy_uri")]
97
118
publicUri?ResourcePolicyUri{get;set;}
98
119
99
120
/// <summary>
100
-
/// URL of a page containing human-readable information about the protected resource's terms of service.
121
+
/// Gets or sets the URL of a page containing human-readable information about the protected resource's terms of service.
101
122
/// </summary>
102
123
/// <remarks>
103
124
/// OPTIONAL. The value of this field MAY be internationalized.
@@ -106,40 +127,52 @@ public sealed class ProtectedResourceMetadata
106
127
publicUri?ResourceTosUri{get;set;}
107
128
108
129
/// <summary>
109
-
/// Boolean value indicating protected resource support for mutual-TLS client certificate-bound access tokens.
130
+
/// Gets or sets a value indicating whether there is protected resource support for mutual-TLS client certificate-bound access tokens.
110
131
/// </summary>
132
+
/// <value>
133
+
/// <see langword="true"/> if there's protected resource support for mutual-TLS client certificate-bound access tokens; otherwise, <see langword="false"/>. The default is <see langword="false"/>.
134
+
/// </value>
111
135
/// <remarks>
112
-
/// OPTIONAL. If omitted, the default value is false.
/// Boolean value specifying whether the protected resource always requires the use of DPoP-bound access tokens.
168
+
/// Gets or sets a value indicating whether the protected resource always requires the use of DPoP-bound access tokens.
139
169
/// </summary>
170
+
/// <value>
171
+
/// <see langword="true"/> if the protected resource always requires the use of DPoP-bound access tokens; otherwise, <see langword="false"/>. The default is <see langword="false"/>.
172
+
/// </value>
140
173
/// <remarks>
141
-
/// OPTIONAL. If omitted, the default value is false.
0 commit comments