github.com/status-im/status-go@v1.1.0/services/wallet/responses/router_suggested_routes.go (about) 1 package responses 2 3 import ( 4 "github.com/status-im/status-go/errors" 5 "github.com/status-im/status-go/services/wallet/router/routes" 6 ) 7 8 type RouterSuggestedRoutes struct { 9 Uuid string `json:"Uuid"` 10 Best routes.Route `json:"Best,omitempty"` 11 Candidates routes.Route `json:"Candidates,omitempty"` 12 UpdatedPrices map[string]float64 `json:"UpdatedPrices,omitempty"` 13 ErrorResponse *errors.ErrorResponse `json:"ErrorResponse,omitempty"` 14 }