Versions in this module Expand all Collapse all v0 v0.3.0 Feb 1, 2024 Changes in this version + type ByDate []*Order + func (o ByDate) Len() int + func (o ByDate) Less(i, j int) bool + func (o ByDate) Swap(i, j int) + type Delivery struct + DeliveredAt time.Time + Items []Item + Retailer string + type Item struct + ID string + Name string + ProductID string + Quantity int + type Order struct + CreatedAt time.Time + Deliveries []Delivery + ID string + Status string + Total string + type OrderService struct + func NewOrderService(client *instacart.Client) *OrderService + func (o *OrderService) GetOrderPages(start, end int) ([]*Order, error)