Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .codegen.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{ "engineHash": "3e11b6f", "specHash": "4beaa19", "version": "10.4.0" }
{ "engineHash": "3e11b6f", "specHash": "ad08e8c", "version": "10.4.0" }
2 changes: 1 addition & 1 deletion docs/authorization.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ authorization code or a server-side JWT assertion.
An Access Token is a string that enables Box to verify that a
request belongs to an authorized session. In the normal order of
operations you will begin by requesting authentication from the
[authorize](#get-authorize) endpoint and Box will send you an
[authorize](https://developer.box.com/reference/get-authorize) endpoint and Box will send you an
authorization code.

You will then send this code to this endpoint to exchange it for
Expand Down
2 changes: 1 addition & 1 deletion docs/comments.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ This function returns a value of type `CommentFull`.
Returns the newly created comment object.

Not all available fields are returned by default. Use the
[fields](#param-fields) query parameter to explicitly request
[fields](#parameter-fields) query parameter to explicitly request
any specific fields.


4 changes: 2 additions & 2 deletions docs/events.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
## Get events long poll endpoint

Returns a list of real-time servers that can be used for long-polling updates
to the [event stream](#get-events).
to the [event stream](https://developer.box.com/reference/get-events).

Long polling is the concept where a HTTP request is kept open until the
server sends a response, then repeating the process over and over to receive
Expand All @@ -23,7 +23,7 @@ URLs. Next, make a long poll request to any of the provided URLs.
When an event occurs in monitored account a response with the value
`new_change` will be sent. The response contains no other details as
it only serves as a prompt to take further action such as sending a
request to the [events endpoint](#get-events) with the last known
request to the [events endpoint](https://developer.box.com/reference/get-events) with the last known
`stream_position`.

After the server sends this response it closes the connection. You must now
Expand Down
6 changes: 3 additions & 3 deletions docs/files.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ This function returns a value of type `FileFull`.
Returns a file object.

Not all available fields are returned by default. Use the
[fields](#param-fields) query parameter to explicitly request
[fields](#parameter-fields) query parameter to explicitly request
any specific fields.


Expand Down Expand Up @@ -77,7 +77,7 @@ This function returns a value of type `FileFull`.
Returns a file object.

Not all available fields are returned by default. Use the
[fields](#param-fields) query parameter to explicitly request
[fields](#parameter-fields) query parameter to explicitly request
any specific fields.


Expand Down Expand Up @@ -148,7 +148,7 @@ This function returns a value of type `FileFull`.
Returns a new file object representing the copied file.

Not all available fields are returned by default. Use the
[fields](#param-fields) query parameter to explicitly request
[fields](#parameter-fields) query parameter to explicitly request
any specific fields.


Expand Down
2 changes: 1 addition & 1 deletion docs/fileversions.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ This function returns a value of type `FileVersionFull`.
Returns a specific version of a file.

Not all available fields are returned by default. Use the
[fields](#param-fields) query parameter to explicitly request
[fields](#parameter-fields) query parameter to explicitly request
any specific fields.


Expand Down
10 changes: 5 additions & 5 deletions docs/folders.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ To fetch more items within the folder, use the
[Get items in a folder](https://developer.box.com/reference/get-folders-id-items)) endpoint.

Not all available fields are returned by default. Use the
[fields](#param-fields) query parameter to explicitly request
[fields](#parameter-fields) query parameter to explicitly request
any specific fields.


Expand Down Expand Up @@ -92,7 +92,7 @@ This function returns a value of type `FolderFull`.
Returns a folder object for the updated folder

Not all available fields are returned by default. Use the
[fields](#param-fields) query parameter to explicitly request
[fields](#parameter-fields) query parameter to explicitly request
any specific fields.

If the user is moving folders with a large number of items in all of
Expand Down Expand Up @@ -140,7 +140,7 @@ Retrieves a page of items in a folder. These items can be files,
folders, and web links.

To request more information about the folder itself, like its size,
use the [Get a folder](#get-folders-id) endpoint instead.
use the [Get a folder](https://developer.box.com/reference/get-folders-id) endpoint instead.

This operation is performed by calling function `getFolderItems`.

Expand Down Expand Up @@ -200,7 +200,7 @@ This function returns a value of type `FolderFull`.
Returns a folder object.

Not all available fields are returned by default. Use the
[fields](#param-fields) query parameter to explicitly request
[fields](#parameter-fields) query parameter to explicitly request
any specific fields.


Expand Down Expand Up @@ -239,7 +239,7 @@ This function returns a value of type `FolderFull`.
Returns a new folder object representing the copied folder.

Not all available fields are returned by default. Use the
[fields](#param-fields) query parameter to explicitly request
[fields](#parameter-fields) query parameter to explicitly request
any specific fields.


4 changes: 2 additions & 2 deletions docs/users.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,8 @@ This function returns a value of type `UserFull`.
Returns a single user object.

Not all available fields are returned by default. Use the
[fields](#param-fields) query parameter to explicitly request
any specific fields using the [fields](#get-users-id--request--fields)
[fields](#parameter-fields) query parameter to explicitly request
any specific fields using the [fields](#parameter-fields)
parameter.


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ public void authorizeUser(AuthorizeUserQueryParams queryParams, AuthorizeUserHea
*
* <p>An Access Token is a string that enables Box to verify that a request belongs to an
* authorized session. In the normal order of operations you will begin by requesting
* authentication from the [authorize](#get-authorize) endpoint and Box will send you an
* authorization code.
* authentication from the [authorize](https://developer.box.com/reference/get-authorize) endpoint
* and Box will send you an authorization code.
*
* <p>You will then send this code to this endpoint to exchange it for an Access Token. The
* returned Access Token can then be used to to make Box API calls.
Expand All @@ -108,8 +108,8 @@ public AccessToken requestAccessToken(PostOAuth2Token requestBody) {
*
* <p>An Access Token is a string that enables Box to verify that a request belongs to an
* authorized session. In the normal order of operations you will begin by requesting
* authentication from the [authorize](#get-authorize) endpoint and Box will send you an
* authorization code.
* authentication from the [authorize](https://developer.box.com/reference/get-authorize) endpoint
* and Box will send you an authorization code.
*
* <p>You will then send this code to this endpoint to exchange it for an Access Token. The
* returned Access Token can then be used to to make Box API calls.
Expand Down
10 changes: 6 additions & 4 deletions src/main/java/com/box/sdkgen/managers/events/EventsManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ protected EventsManager(Builder builder) {

/**
* Returns a list of real-time servers that can be used for long-polling updates to the [event
* stream](#get-events).
* stream](https://developer.box.com/reference/get-events).
*
* <p>Long polling is the concept where a HTTP request is kept open until the server sends a
* response, then repeating the process over and over to receive updated responses.
Expand All @@ -46,7 +46,8 @@ protected EventsManager(Builder builder) {
*
* <p>When an event occurs in monitored account a response with the value `new_change` will be
* sent. The response contains no other details as it only serves as a prompt to take further
* action such as sending a request to the [events endpoint](#get-events) with the last known
* action such as sending a request to the [events
* endpoint](https://developer.box.com/reference/get-events) with the last known
* `stream_position`.
*
* <p>After the server sends this response it closes the connection. You must now repeat the long
Expand All @@ -69,7 +70,7 @@ public RealtimeServers getEventsWithLongPolling() {

/**
* Returns a list of real-time servers that can be used for long-polling updates to the [event
* stream](#get-events).
* stream](https://developer.box.com/reference/get-events).
*
* <p>Long polling is the concept where a HTTP request is kept open until the server sends a
* response, then repeating the process over and over to receive updated responses.
Expand All @@ -81,7 +82,8 @@ public RealtimeServers getEventsWithLongPolling() {
*
* <p>When an event occurs in monitored account a response with the value `new_change` will be
* sent. The response contains no other details as it only serves as a prompt to take further
* action such as sending a request to the [events endpoint](#get-events) with the last known
* action such as sending a request to the [events
* endpoint](https://developer.box.com/reference/get-events) with the last known
* `stream_position`.
*
* <p>After the server sends this response it closes the connection. You must now repeat the long
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ public void deleteFolderById(
* Retrieves a page of items in a folder. These items can be files, folders, and web links.
*
* <p>To request more information about the folder itself, like its size, use the [Get a
* folder](#get-folders-id) endpoint instead.
* folder](https://developer.box.com/reference/get-folders-id) endpoint instead.
*
* @param folderId The unique identifier that represent a folder.
* <p>The ID for any folder can be determined by visiting this folder in the web application
Expand All @@ -414,7 +414,7 @@ public Items getFolderItems(String folderId) {
* Retrieves a page of items in a folder. These items can be files, folders, and web links.
*
* <p>To request more information about the folder itself, like its size, use the [Get a
* folder](#get-folders-id) endpoint instead.
* folder](https://developer.box.com/reference/get-folders-id) endpoint instead.
*
* @param folderId The unique identifier that represent a folder.
* <p>The ID for any folder can be determined by visiting this folder in the web application
Expand All @@ -431,7 +431,7 @@ public Items getFolderItems(String folderId, GetFolderItemsQueryParams queryPara
* Retrieves a page of items in a folder. These items can be files, folders, and web links.
*
* <p>To request more information about the folder itself, like its size, use the [Get a
* folder](#get-folders-id) endpoint instead.
* folder](https://developer.box.com/reference/get-folders-id) endpoint instead.
*
* @param folderId The unique identifier that represent a folder.
* <p>The ID for any folder can be determined by visiting this folder in the web application
Expand All @@ -448,7 +448,7 @@ public Items getFolderItems(String folderId, GetFolderItemsHeaders headers) {
* Retrieves a page of items in a folder. These items can be files, folders, and web links.
*
* <p>To request more information about the folder itself, like its size, use the [Get a
* folder](#get-folders-id) endpoint instead.
* folder](https://developer.box.com/reference/get-folders-id) endpoint instead.
*
* @param folderId The unique identifier that represent a folder.
* <p>The ID for any folder can be determined by visiting this folder in the web application
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class CreateUserRequestBody extends SerializableObject {

/**
* The language of the user, formatted in modified version of the [ISO
* 639-1](/guides/api-calls/language-codes) format.
* 639-1](https://developer.box.com/guides/api-calls/language-codes) format.
*/
protected String language;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public class UpdateUserByIdRequestBody extends SerializableObject {

/**
* The language of the user, formatted in modified version of the [ISO
* 639-1](/guides/api-calls/language-codes) format.
* 639-1](https://developer.box.com/guides/api-calls/language-codes) format.
*/
protected String language;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class RealtimeServer extends SerializableObject {

/**
* The maximum number of retries this server will allow before a new long poll should be started
* by getting a [new list of server](#options-events).
* by getting a [new list of server](https://developer.box.com/reference/options-events).
*/
@JsonProperty("max_retries")
protected String maxRetries;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/box/sdkgen/schemas/user/User.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class User extends UserMini {

/**
* The language of the user, formatted in modified version of the [ISO
* 639-1](/guides/api-calls/language-codes) format.
* 639-1](https://developer.box.com/guides/api-calls/language-codes) format.
*/
protected String language;

Expand Down
Loading