import { AllowedValueWithCode } from '../../commonStateTypes/allowedValue'; import { ID } from '../../commonStateTypes/common'; export interface SubscriptionPaymentAccount { accountLast4Digits: string; accountName: string; bankName: string; id: ID; maskedAccountNumber: string; accountType?: AllowedValueWithCode; providerVerificationStatus?: AllowedValueWithCode; status?: string; } export interface SubscriptionPaymentAccountState { subscriptionPaymentAccountByID: Record; }