No description

type InstacartActivityMetadata implements ActivityMetadata {
  subject: [Identifier]
  retailer: String!
  retailerID: String!
  city: String!
  totalOrderAmountSpent: String!
  currency: String!
  dateOrdered: Date!
  dateDelivered: Date!
  statusString: String!
  items: [InstacartOrderItem]!
}

Fields

retailer
String!

The name of the ratailer that handled the order.

retailerID
String!

The Instacart ID of the retailer.

city
String!

The city where the order was delivered to.

totalOrderAmountSpent
String!

The total amount spent on this order.

currency
String!

The currency the order was priced in.

dateOrdered
Date!

The date the order was placed

dateDelivered
Date!

The date the order was delivered

statusString
String!

String indicating the status of the order

Interfaces

ActivityMetadata interface