Skip to content

Commit 06f4737

Browse files
docs(boxsdkgen): Add missing tag to API resources (box/box-openapi#580) (#1370)
1 parent 04bc507 commit 06f4737

35 files changed

Lines changed: 50 additions & 50 deletions

.codegen.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "engineHash": "3e11b6f", "specHash": "4beaa19", "version": "6.4.0" }
1+
{ "engineHash": "3e11b6f", "specHash": "ad08e8c", "version": "6.4.0" }

BoxSdkGen/Box.Sdk.Gen.Net/Managers/Authorization/AuthorizationManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public async System.Threading.Tasks.Task AuthorizeUserAsync(AuthorizeUserQueryPa
4545
/// An Access Token is a string that enables Box to verify that a
4646
/// request belongs to an authorized session. In the normal order of
4747
/// operations you will begin by requesting authentication from the
48-
/// [authorize](#get-authorize) endpoint and Box will send you an
48+
/// [authorize](https://developer.box.com/reference/get-authorize) endpoint and Box will send you an
4949
/// authorization code.
5050
///
5151
/// You will then send this code to this endpoint to exchange it for

BoxSdkGen/Box.Sdk.Gen.Net/Managers/Authorization/IAuthorizationManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public interface IAuthorizationManager {
3333
/// An Access Token is a string that enables Box to verify that a
3434
/// request belongs to an authorized session. In the normal order of
3535
/// operations you will begin by requesting authentication from the
36-
/// [authorize](#get-authorize) endpoint and Box will send you an
36+
/// [authorize](https://developer.box.com/reference/get-authorize) endpoint and Box will send you an
3737
/// authorization code.
3838
///
3939
/// You will then send this code to this endpoint to exchange it for

BoxSdkGen/Box.Sdk.Gen.Net/Managers/Events/EventsManager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public EventsManager(NetworkSession? networkSession = default) {
1616
}
1717
/// <summary>
1818
/// Returns a list of real-time servers that can be used for long-polling updates
19-
/// to the [event stream](#get-events).
19+
/// to the [event stream](https://developer.box.com/reference/get-events).
2020
///
2121
/// Long polling is the concept where a HTTP request is kept open until the
2222
/// server sends a response, then repeating the process over and over to receive
@@ -31,7 +31,7 @@ public EventsManager(NetworkSession? networkSession = default) {
3131
/// When an event occurs in monitored account a response with the value
3232
/// `new_change` will be sent. The response contains no other details as
3333
/// it only serves as a prompt to take further action such as sending a
34-
/// request to the [events endpoint](#get-events) with the last known
34+
/// request to the [events endpoint](https://developer.box.com/reference/get-events) with the last known
3535
/// `stream_position`.
3636
///
3737
/// After the server sends this response it closes the connection. You must now

BoxSdkGen/Box.Sdk.Gen.Net/Managers/Events/IEventsManager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace Box.Sdk.Gen.Managers {
99
public interface IEventsManager {
1010
/// <summary>
1111
/// Returns a list of real-time servers that can be used for long-polling updates
12-
/// to the [event stream](#get-events).
12+
/// to the [event stream](https://developer.box.com/reference/get-events).
1313
///
1414
/// Long polling is the concept where a HTTP request is kept open until the
1515
/// server sends a response, then repeating the process over and over to receive
@@ -24,7 +24,7 @@ public interface IEventsManager {
2424
/// When an event occurs in monitored account a response with the value
2525
/// `new_change` will be sent. The response contains no other details as
2626
/// it only serves as a prompt to take further action such as sending a
27-
/// request to the [events endpoint](#get-events) with the last known
27+
/// request to the [events endpoint](https://developer.box.com/reference/get-events) with the last known
2828
/// `stream_position`.
2929
///
3030
/// After the server sends this response it closes the connection. You must now

BoxSdkGen/Box.Sdk.Gen.Net/Managers/Folders/CreateFolderRequestBody.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ public class CreateFolderRequestBody : ISerializable {
1616
/// (`/`, `\`), names with trailing spaces, and names `.` and `..` are
1717
/// not allowed.
1818
///
19-
/// Folder names must be unique within their parent folder. The name check is case-insensitive,
20-
/// so a folder named `New Folder` cannot be created in a parent folder that already contains
19+
/// Folder names must be unique within their parent folder. The name check is case-insensitive,
20+
/// so a folder named `New Folder` cannot be created in a parent folder that already contains
2121
/// a folder named `new folder`.
2222
/// </summary>
2323
[JsonPropertyName("name")]

BoxSdkGen/Box.Sdk.Gen.Net/Managers/Folders/FoldersManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ public async System.Threading.Tasks.Task DeleteFolderByIdAsync(string folderId,
136136
/// folders, and web links.
137137
///
138138
/// To request more information about the folder itself, like its size,
139-
/// use the [Get a folder](#get-folders-id) endpoint instead.
139+
/// use the [Get a folder](https://developer.box.com/reference/get-folders-id) endpoint instead.
140140
/// </summary>
141141
/// <param name="folderId">
142142
/// The unique identifier that represent a folder.

BoxSdkGen/Box.Sdk.Gen.Net/Managers/Folders/IFoldersManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ public interface IFoldersManager {
108108
/// folders, and web links.
109109
///
110110
/// To request more information about the folder itself, like its size,
111-
/// use the [Get a folder](#get-folders-id) endpoint instead.
111+
/// use the [Get a folder](https://developer.box.com/reference/get-folders-id) endpoint instead.
112112
/// </summary>
113113
/// <param name="folderId">
114114
/// The unique identifier that represent a folder.

BoxSdkGen/Box.Sdk.Gen.Net/Managers/Users/CreateUserRequestBody.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public class CreateUserRequestBody : ISerializable {
3838

3939
/// <summary>
4040
/// The language of the user, formatted in modified version of the
41-
/// [ISO 639-1](/guides/api-calls/language-codes) format.
41+
/// [ISO 639-1](https://developer.box.com/guides/api-calls/language-codes) format.
4242
/// </summary>
4343
[JsonPropertyName("language")]
4444
public string? Language { get; init; }

BoxSdkGen/Box.Sdk.Gen.Net/Managers/Users/UpdateUserByIdRequestBody.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public class UpdateUserByIdRequestBody : ISerializable {
5858

5959
/// <summary>
6060
/// The language of the user, formatted in modified version of the
61-
/// [ISO 639-1](/guides/api-calls/language-codes) format.
61+
/// [ISO 639-1](https://developer.box.com/guides/api-calls/language-codes) format.
6262
/// </summary>
6363
[JsonPropertyName("language")]
6464
public string? Language { get; init; }

0 commit comments

Comments
 (0)