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
8 changes: 4 additions & 4 deletions src/objects.rs
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ pub struct RawStopTime {
/// Indicates if arrival and departure times for a stop are strictly adhered to by the vehicle or if they are instead approximate and/or interpolated times
#[serde(default)]
pub timepoint: TimepointType,
/// This field is not part of the main GTFS specification, it is part of the Google Transit Ticketing extension
/// This field is not part of the main GTFS specification, it is part of the Google Transit Ticketing extension.
/// Enable or disable buying tickets via a deep link
#[serde(default)]
pub ticketing_type: TicketingType,
Expand Down Expand Up @@ -562,7 +562,7 @@ pub struct Agency {
/// Email address actively monitored by the agency’s customer service department
#[serde(rename = "agency_email")]
pub email: Option<String>,
/// This field is not part of the main GTFS specification, it is part of the Google Transit Ticketing extension
/// This field is not part of the main GTFS specification, it is part of the Google Transit Ticketing extension.
/// Trip ID to pass to a ticket shop
pub ticketing_deep_link_id: Option<String>,
}
Expand Down Expand Up @@ -925,7 +925,7 @@ impl Id for RawPathway {
}
}

/// This object is not part of the main GTFS specification, it is part of the Google Transit Ticketing extension
/// This object is not part of the main GTFS specification, it is part of the Google Transit Ticketing extension.
/// A mapping of the GTFS-identifiers to the ticket shop identifiers
#[derive(Clone, Debug, Serialize, Deserialize, Default)]
pub struct TicketingIdentifier {
Expand All @@ -937,7 +937,7 @@ pub struct TicketingIdentifier {
pub agency_id: String,
}

/// This object is not part of the main GTFS specification, it is part of the Google Transit Ticketing extension
/// This object is not part of the main GTFS specification, it is part of the Google Transit Ticketing extension.
/// The base url to a ticket shop without the trip specific parameters
#[derive(Clone, Debug, Serialize, Deserialize, Default)]
pub struct TicketingDeepLink {
Expand Down
Loading