import type * as Square from "../index"; /** * Defines the fields that are included in the response body of a request to the * [PayOrder](api-endpoint:Orders-PayOrder) endpoint. */ export interface PayOrderResponse { /** Any errors that occurred during the request. */ errors?: Square.Error_[]; /** The paid, updated [order](entity:Order). */ order?: Square.Order; }