Skip to content

Commit

Permalink
fix: correct param types in file representation (box/box-openapi#503)
Browse files Browse the repository at this point in the history
  • Loading branch information
box-sdk-build committed Jan 21, 2025
1 parent 1cc886b commit eb652e1
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 eb652e1

Please sign in to comment.