Skip to content

Commit

Permalink
Merge pull request #113 from jjideenschmiede/development
Browse files Browse the repository at this point in the history
fix: Add custom fields type to struct.
  • Loading branch information
gowizzard authored Nov 21, 2023
2 parents 260787a + 3d675c7 commit 8754389
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions search.go
Original file line number Diff line number Diff line change
Expand Up @@ -675,8 +675,9 @@ type CustomOrderSearchReturn struct {
Cover interface{} `json:"cover"`
Children interface{} `json:"children"`
Product struct {
ProductNumber string `json:"productNumber"`
ApiAlias string `json:"apiAlias"`
ProductNumber string `json:"productNumber"`
CustomFields map[string]string `json:"customFields"`
ApiAlias string `json:"apiAlias"`
} `json:"product"`
UniqueIdentifier string `json:"_uniqueIdentifier"`
VersionId string `json:"versionId"`
Expand Down

0 comments on commit 8754389

Please sign in to comment.