File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed
Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change 11package response
22
3- import "github.com/fortifi/productmanager-go/pmtime"
3+ import (
4+ "github.com/fortifi/productmanager-go/pmtime"
5+ "github.com/fortifi/productmanager-go/transport"
6+ )
47
58func NewAvailabilityCheck () * AvailabilityCheck {
69 r := & AvailabilityCheck {}
@@ -11,6 +14,12 @@ func NewAvailabilityCheck() *AvailabilityCheck {
1114
1215type AvailabilityCheck struct {
1316 Response
14- IsAvailable bool `json:"isAvailable"`
15- AvailableSKUs []string `json:"availableSkus"`
17+ IsAvailable bool `json:"isAvailable"`
18+ AvailableSKUs []string `json:"availableSkus"`
19+ Suggestions []AvailabilityCheckSuggestion `json:"suggestions"`
20+ }
21+
22+ type AvailabilityCheckSuggestion struct {
23+ Sku string `json:"sku"`
24+ Properties []transport.Property `json:"properties"`
1625}
You can’t perform that action at this time.
0 commit comments