Skip to content

Commit d6995ad

Browse files
box-sdk-buildbox-sdk-build
andauthored
fix: Correct types of paged and thumb properties in File representation (box/box-openapi#503) (#383)
Co-authored-by: box-sdk-build <[email protected]>
1 parent a64d373 commit d6995ad

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.codegen.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "engineHash": "b5ed925", "specHash": "091b558", "version": "1.6.0" }
1+
{ "engineHash": "b5ed925", "specHash": "99792c6", "version": "1.6.0" }

Box.Sdk.Gen/Schemas/FileFull/FileFullRepresentationsEntriesPropertiesField.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ public class FileFullRepresentationsEntriesPropertiesField : ISerializable {
2020
/// pages.
2121
/// </summary>
2222
[JsonPropertyName("paged")]
23-
public bool? Paged { get; init; }
23+
public string? Paged { get; init; }
2424

2525
/// <summary>
2626
/// Indicates if the representation can be used as a thumbnail of
2727
/// the file.
2828
/// </summary>
2929
[JsonPropertyName("thumb")]
30-
public bool? Thumb { get; init; }
30+
public string? Thumb { get; init; }
3131

3232
public FileFullRepresentationsEntriesPropertiesField() {
3333

0 commit comments

Comments
 (0)