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