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
/// Gets or sets the human-readable name of the protected resource intended for display to the end user.
89
+
/// </summary>
90
+
/// <remarks>
91
+
/// RECOMMENDED. It is recommended that protected resource metadata include this field.
92
+
/// The value of this field MAY be internationalized.
93
+
/// </remarks>
94
+
[JsonPropertyName("resource_name")]
95
+
publicstring?ResourceName{get;set;}
96
+
97
+
/// <summary>
98
+
/// Gets or sets the URI to the resource documentation.
99
+
/// </summary>
100
+
/// <value>
101
+
/// The URL of a page containing human-readable information that developers might want or need to know
102
+
/// when using the protected resource.
103
+
/// </value>
104
+
/// <remarks>
105
+
/// OPTIONAL.
106
+
/// </remarks>
107
+
[JsonPropertyName("resource_documentation")]
108
+
publicstring?ResourceDocumentation{get;set;}
109
+
110
+
/// <summary>
111
+
/// Gets or sets the URL of a page containing human-readable information about the protected resource's requirements.
112
+
/// </summary>
113
+
/// <value>
114
+
/// The URL of a page that contains information about how the client can use the data provided by the protected resource.
115
+
/// </value>
116
+
/// <remarks>
117
+
/// OPTIONAL.
118
+
/// </remarks>
119
+
[JsonPropertyName("resource_policy_uri")]
120
+
publicstring?ResourcePolicyUri{get;set;}
121
+
122
+
/// <summary>
123
+
/// Gets or sets the URL of a page containing human-readable information about the protected resource's terms of service.
124
+
/// </summary>
125
+
/// <remarks>
126
+
/// OPTIONAL. The value of this field MAY be internationalized.
127
+
/// </remarks>
128
+
[JsonPropertyName("resource_tos_uri")]
129
+
publicstring?ResourceTosUri{get;set;}
130
+
131
+
/// <summary>
132
+
/// Gets or sets a value indicating whether there is protected resource support for mutual-TLS client certificate-bound access tokens.
133
+
/// </summary>
134
+
/// <value>
135
+
/// <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"/>.
/// Gets or sets a value indicating whether the protected resource always requires the use of DPoP-bound access tokens.
171
+
/// </summary>
172
+
/// <value>
173
+
/// <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"/>.
0 commit comments