import type * as Square from "../index"; /** * Represents a [CancelLoyaltyPromotion](api-endpoint:Loyalty-CancelLoyaltyPromotion) response. * Either `loyalty_promotion` or `errors` is present in the response. */ export interface CancelLoyaltyPromotionResponse { /** Any errors that occurred during the request. */ errors?: Square.Error_[]; /** The canceled loyalty promotion. */ loyaltyPromotion?: Square.LoyaltyPromotion; }