Some changes
All checks were successful
Golan Testing / testing (1.24.x, ubuntu-latest) (push) Successful in 26s

This commit is contained in:
2025-05-31 20:55:25 -04:00
parent d3c2badfcb
commit d66d529fa9
2 changed files with 137 additions and 111 deletions

View File

@ -3,8 +3,6 @@ package mysubaru
import (
"encoding/json"
"time"
"github.com/Jeffail/gabs/v2"
)
// Response .
@ -262,7 +260,7 @@ type ServiceRequest struct {
RemoteServiceState string `json:"remoteServiceState"` // started | finished | stopping
SubState *string `json:"subState,omitempty"` // null
ErrorCode *string `json:"errorCode,omitempty"` // null:null
Result *gabs.Container `json:"result,omitempty"` // null
Result json.RawMessage `json:"result,omitempty"` // null
UpdateTime *time.Time `json:"updateTime,omitempty"` // timestamp
Vin string `json:"vin"` // 4S4BTGND8L3137058
}