Skip to content

Commit

Permalink
Use int type for SizeInBytes in file summary response (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbodhi authored May 24, 2022
1 parent f20d37b commit 1506223
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dwapi/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ type FileSummaryResponse struct {
Description string `json:"description,omitempty"`
Labels []string `json:"labels,omitempty"`
Name string `json:"name"`
SizeInBytes string `json:"sizeInBytes,omitempty"`
SizeInBytes uint `json:"sizeInBytes,omitempty"`
Source FileSourceResponse `json:"source,omitempty"`
Updated string `json:"updated"`
}
Expand Down

0 comments on commit 1506223

Please sign in to comment.