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

fix: Correct types of paged and thumb properties in File representation (box/box-openapi#503) #383

Merged
merged 4 commits into from
Jan 23, 2025
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": "b5ed925", "specHash": "091b558", "version": "1.6.0" }
{ "engineHash": "b5ed925", "specHash": "99792c6", "version": "1.6.0" }
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ public class FileFullRepresentationsEntriesPropertiesField : ISerializable {
/// pages.
/// </summary>
[JsonPropertyName("paged")]
public bool? Paged { get; init; }
public string? Paged { get; init; }

/// <summary>
/// Indicates if the representation can be used as a thumbnail of
/// the file.
/// </summary>
[JsonPropertyName("thumb")]
public bool? Thumb { get; init; }
public string? Thumb { get; init; }

public FileFullRepresentationsEntriesPropertiesField() {

Expand Down
Loading