View Source PorscheConnEx.Struct.Maintenance.Task.Description (porsche_conn_ex v0.1.0)

Structure containing descriptive information about a maintenance task.

Fields

  • short_name (string) — the short name of the task
    • e.g. "TPMS battery (front left)" or "RDK-Batterie (vorne links)"
  • long_name (string) — the long name of the task
    • e.g. "Replace TPMS battery (front left)" or "Wechsel der RDK-Batterie (vorne links)"
  • criticality (integer) — seems to be a sentence describing whether maintenance is required?
    • e.g. "No maintenance is due at the moment." or "Zurzeit ist kein Service notwendig."
  • notification (unknown) — always nil in testing
    • Might be non-nil if maintenance is required?

The strings in this structure are heavily influenced by the session locale (see PorscheConnEx.Config).

Summary

Types

@type t() :: %PorscheConnEx.Struct.Maintenance.Task.Description{
  criticality: binary(),
  long_name: binary(),
  notification: any(),
  short_name: binary()
}