import type * as Square from "../index"; /** * A response that includes the loyalty reward created. */ export interface CreateLoyaltyRewardResponse { /** Any errors that occurred during the request. */ errors?: Square.Error_[]; /** The loyalty reward created. */ reward?: Square.LoyaltyReward; }