From a7d0beb19d79eb2ce029aab352d90eb60256e89f Mon Sep 17 00:00:00 2001 From: Dylan Moreland Date: Wed, 29 May 2024 14:13:46 -0400 Subject: [PATCH] Casing --- sdtask/sdtask.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdtask/sdtask.go b/sdtask/sdtask.go index 06b8d34..20e69c7 100644 --- a/sdtask/sdtask.go +++ b/sdtask/sdtask.go @@ -14,9 +14,9 @@ type CredentialData struct { Expiry time.Time `json:"expiry"` RefreshToken string `json:"refreshToken"` // Version is an API version. Currently only used for Tesla: 1 is the old - // "Owner api" and 2 is the new "Fleet API". + // "Owner API" and 2 is the new "Fleet API". Version int `json:"version,omitempty"` - // Region is the two-letter code for the region. Currently only used for + // Region is a lowercase two-letter code for the region. Currently only used for // Tesla, and can only be "na" or "eu". Region string `json:"region,omitempty"` SyntheticDevice *SyntheticDevice `json:"syntheticDevice,omitempty"`