interface UserActivity {
    stationaryInfo?: StationaryInfo;
    tripInfo?: TripInfo;
    type:
        | "USER_ACTIVITY_TYPE_TRIP"
        | "USER_ACTIVITY_TYPE_STATIONARY"
        | "USER_ACTIVITY_TYPE_UNKNOWN"
        | "USER_ACTIVITY_TYPE_UNRECOGNIZED";
}

Properties

stationaryInfo?: StationaryInfo
tripInfo?: TripInfo
type:
    | "USER_ACTIVITY_TYPE_TRIP"
    | "USER_ACTIVITY_TYPE_STATIONARY"
    | "USER_ACTIVITY_TYPE_UNKNOWN"
    | "USER_ACTIVITY_TYPE_UNRECOGNIZED"