tesla-fleet-api
Version:
A library for the [Tesla Fleet API](https://developer.tesla.com/docs/fleet-api), and the third parties services [Teslemetry](https://teslemetry.com/docs/getting-started/api) and [Tessie](https://developer.tessie.com/docs/tesla-api-comparison), which provi
23 lines (22 loc) • 521 B
TypeScript
export type VehicleResponse = {
id: number;
vehicle_id: number;
vin: string;
color: null;
access_type: string;
display_name: string;
option_codes: null;
granular_access: GranularAccess;
tokens: string[];
state: string;
in_service: boolean;
id_s: string;
calendar_enabled: boolean;
api_version: number;
backseat_token: null;
backseat_token_updated_at: null;
ble_autopair_enrolled: boolean;
};
export type GranularAccess = {
hide_private: boolean;
};