No description

type UberEatsActivityMetadata implements ActivityMetadata {
  subject: [Identifier]
  date: Date
  restaurant: String!
  restaurantCity: String!
  currency: String!
  totalPrice: Float!
  status: UberEatsOrderStatus!
  items: [UberEatsOrderItem]!
}

Fields

date
Date

Date indicating when the order was made.

restaurant
String!

The name of the restaurant that handled the order.

restaurantCity
String!

The city where the restaurant is located.

currency
String!

The currency the order was priced in.

totalPrice
Float!

The total amount spent on this order.

Interfaces

ActivityMetadata interface