import { LoyaltyProgramPointHistoryTypeEnum } from "../../../../../storefront-api/src"; export type IkasLoyaltyProgramPointHistory = { amount: number; createdAt: any | null; customerId: string; deleted: boolean; expireDate: any | null; id: string; loyaltyProgramCustomerId: string; loyaltyProgramEarningMethodId: string | null; loyaltyProgramId: string; loyaltyProgramSpendingMethodId: string | null; orderId: string | null; type: LoyaltyProgramPointHistoryTypeEnum; updatedAt: any | null; };