export interface ICustomerStoreCredit { readonly credit_slug: string; readonly amount: number; } export interface IStoreCreditHistory { readonly customer_id: string; readonly credit_slug: string; readonly amount: number; readonly comment: string; /** DateTime in ISO format */ readonly creation_date: string; readonly created_by: string; }