Skip to content

Commit

Permalink
Change data type for dataset order
Browse files Browse the repository at this point in the history
  • Loading branch information
borodiychuk committed Oct 26, 2020
1 parent 3c70139 commit c35e690
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dataset.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ type DatasetParams struct {

// Dataset describes an dataser information that API may return
type Dataset struct {
ID string `json:"id"`
Name string `json:"name"`
Order int `json:"norder"`
ID string `json:"id"`
Name string `json:"name"`
Order float64 `json:"norder"`
}

// NewDatasetClient instantiates dataset client
Expand Down

0 comments on commit c35e690

Please sign in to comment.