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

subject
[Identifier]
List of identifiers associated with the activity’s subject.

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

status
TripStatus!
Enum indicating the status of a trip

Interfaces

ActivityMetadata interface