GET POST | /report/unitsummary | ||
---|---|---|---|
GET POST | /report/unitsummary/{Id} |
import datetime
import decimal
from marshmallow.fields import *
from servicestack import *
from typing import *
from dataclasses import dataclass, field
from dataclasses_json import dataclass_json, LetterCase, Undefined, config
from enum import Enum, IntEnum
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class Location:
latitude: float = 0.0
longitude: float = 0.0
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class Address:
country: Optional[str] = None
zip_code: Optional[str] = None
city: Optional[str] = None
street_address: Optional[str] = None
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class UnitDaySummary:
unit_id: Optional[str] = None
start_time: Optional[datetime.datetime] = None
start_location: Optional[Location] = None
start_address: Optional[Address] = None
stop_time: Optional[datetime.datetime] = None
stop_location: Optional[Location] = None
stop_address: Optional[Address] = None
input1_change_counter: int = 0
input2_change_counter: int = 0
run1: float = 0.0
run2: float = 0.0
run3: float = 0.0
run4: float = 0.0
run_odo: float = 0.0
km: float = 0.0
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class GetReportUnitSummaryResponse:
list: Optional[List[UnitDaySummary]] = None
response_status: Optional[ResponseStatus] = None
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class GetReportUnitSummary:
unit_id: Optional[str] = None
date: Optional[datetime.datetime] = None
Python GetReportUnitSummary DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /report/unitsummary HTTP/1.1
Host: api.trackunit.com
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"unitId":"String","date":"0001-01-01T00:00:00.0000000Z"}
HTTP/1.1 200 OK Content-Type: text/jsonl Content-Length: length {"list":[{"unitId":"String","startTime":"0001-01-01T00:00:00.0000000Z","startLocation":{"latitude":0,"longitude":0},"startAddress":{"country":"String","zipCode":"String","city":"String","streetAddress":"String"},"stopTime":"0001-01-01T00:00:00.0000000Z","stopLocation":{"latitude":0,"longitude":0},"stopAddress":{"country":"String","zipCode":"String","city":"String","streetAddress":"String"},"input1ChangeCounter":0,"input2ChangeCounter":0,"run1":0,"run2":0,"run3":0,"run4":0,"runOdo":0,"km":0}],"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}