Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: typo in get-folders-id-items fields param description (box/box-openapi#414) #63

Merged
merged 4 commits into from
Mar 28, 2024
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": "e12401a", "specHash": "d50ab5f", "version": "0.3.0" }
{ "engineHash": "e12401a", "specHash": "1698c95", "version": "0.3.0" }
2 changes: 1 addition & 1 deletion Box.Sdk.Gen/Managers/Files/GetFileByIdQueryParams.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class GetFileByIdQueryParams {
/// Additionally this field can be used to query any metadata
/// applied to the file by specifying the `metadata` field as well
/// as the scope and key of the template to retrieve, for example
/// `?field=metadata.enterprise_12345.contractTemplate`.
/// `?fields=metadata.enterprise_12345.contractTemplate`.
/// </summary>
public IReadOnlyList<string>? Fields { get; set; } = default;

Expand Down
2 changes: 1 addition & 1 deletion Box.Sdk.Gen/Managers/Folders/GetFolderByIdQueryParams.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class GetFolderByIdQueryParams {
/// Additionally this field can be used to query any metadata
/// applied to the file by specifying the `metadata` field as well
/// as the scope and key of the template to retrieve, for example
/// `?field=metadata.enterprise_12345.contractTemplate`.
/// `?fields=metadata.enterprise_12345.contractTemplate`.
/// </summary>
public IReadOnlyList<string>? Fields { get; set; } = default;

Expand Down
2 changes: 1 addition & 1 deletion Box.Sdk.Gen/Managers/Folders/GetFolderItemsQueryParams.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class GetFolderItemsQueryParams {
/// Additionally this field can be used to query any metadata
/// applied to the file by specifying the `metadata` field as well
/// as the scope and key of the template to retrieve, for example
/// `?field=metadata.enterprise_12345.contractTemplate`.
/// `?fields=metadata.enterprise_12345.contractTemplate`.
/// </summary>
public IReadOnlyList<string>? Fields { get; set; } = default;

Expand Down
Loading