Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import ch.opentransportdata.ojp.data.dto.OJP_NAME_SPACE
import ch.opentransportdata.ojp.data.dto.SIRI_NAME_SPACE
import ch.opentransportdata.ojp.data.dto.SIRI_PREFIX
import ch.opentransportdata.ojp.data.dto.response.NameDto
import ch.opentransportdata.ojp.data.dto.response.tr.leg.ExpectedDepartureOccupancyDto
import ch.opentransportdata.ojp.data.dto.response.tr.leg.ServiceTimeDto
import kotlinx.parcelize.Parcelize
import kotlinx.serialization.Serializable
Expand Down Expand Up @@ -68,4 +69,8 @@ data class CallAtStopDto(
@XmlElement(true)
@XmlSerialName("NoAlightingAtStop", OJP_NAME_SPACE, "")
val noAlightingAtStop: Boolean? = null,

@XmlElement(true)
@XmlSerialName("ExpectedDepartureOccupancy", SIRI_NAME_SPACE, SIRI_PREFIX)
val expectedDepartureOccupancy: List<ExpectedDepartureOccupancyDto>? = null
) : Parcelable
Loading