import type * as Square from "../index"; /** * Defines the response returned by[CompletePayment](api-endpoint:Payments-CompletePayment). */ export interface CompletePaymentResponse { /** Information about errors encountered during the request. */ errors?: Square.Error_[]; /** The successfully completed payment. */ payment?: Square.Payment; }