Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ErrBadRequest = errors.New("bad request")
View Source
var ErrNotFound = errors.New("not found")
Functions ¶
This section is empty.
Types ¶
type DeviceDefinition ¶ added in v0.10.20
type DeviceDefinition struct { Model string `json:"model"` Year int `json:"year"` Manufacturer struct { ID string `json:"id"` TokenID int `json:"tokenId"` Name string `json:"name"` TableID int `json:"tableId"` } `json:"manufacturer"` Attributes []struct { Name string `json:"name"` Value string `json:"value"` } `json:"attributes"` }
type GraphQLRequest ¶
type GraphQLRequest struct {
Query string `json:"query"`
}
type IdentityAPI ¶
type IdentityAPI interface { GetVehicleByDeviceAddr(ethAddress common.Address) (*VehicleInfo, error) GetDefinitionByID(definitionID string) (*DeviceDefinition, error) }
func NewIdentityAPIService ¶
func NewIdentityAPIService(logger *zerolog.Logger, settings *config.Settings, httpClient shared.HTTPClientWrapper) IdentityAPI
NewIdentityAPIService creates a new instance of IdentityAPI, initializing it with the provided logger, settings, and HTTP client. httpClient is used for testing really
type VehicleDefinition ¶
type VehicleInfo ¶
type VehicleInfo struct { TokenID uint64 `json:"tokenId"` Definition VehicleDefinition `json:"definition"` }
Click to show internal directories.
Click to hide internal directories.