No description

type UberActivityMetadata implements ActivityMetadata {
  subject: [Identifier]
  date: Date
  beginTripTime: Time! @deprecated
  dropoffTime: Time @deprecated
  cost: String!
  city: String!
  distance: String!
  status: TripStatus!
}

Fields

date
Date

This indicates the date of the trip.

beginTripTime
Time!

This indicates the start time of the trip

dropoffTime
Time

This indicates the end time of the trip

cost
String!

A string indicating the cost of the trip

city
String!

A string indicating the city the trip originated from

distance
String!

Distance covered from pickup to dropoff location

Interfaces

ActivityMetadata interface