import type * as Square from "../index"; /** * Defines the response returned by * [UpdatePayment](api-endpoint:Payments-UpdatePayment). */ export interface UpdatePaymentResponse { /** Any errors that occurred during the request. */ errors?: Square.Error_[]; /** The updated payment. */ payment?: Square.Payment; }