Skip to content

Commit

Permalink
fix: Correct types of paged and thumb properties in File represen…
Browse files Browse the repository at this point in the history
…tation (box/box-openapi#503) (#383)

Co-authored-by: box-sdk-build <[email protected]>
  • Loading branch information
box-sdk-build and box-sdk-build authored Jan 23, 2025
1 parent a64d373 commit d6995ad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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

0 comments on commit d6995ad

Please sign in to comment.