Skip to content

Commit eb652e1

Browse files
committed
fix: correct param types in file representation (box/box-openapi#503)
1 parent 1cc886b commit eb652e1

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)