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