import type * as Square from "../index"; /** * V1OrderHistoryEntry */ export interface V1OrderHistoryEntry { /** * The type of action performed on the order. * See [V1OrderHistoryEntryAction](#type-v1orderhistoryentryaction) for possible values */ action?: Square.V1OrderHistoryEntryAction; /** The time when the action was performed, in ISO 8601 format. */ createdAt?: string; }