import { MgpTypedError, ProfilingAttemptReference, TypedError } from '@mangopay/checkout-sdk-core'; import { PayInMoneyCard, PayInBilling } from '@mangopay/vault-sdk/src/types'; import { ViewPayInInput } from './view-pay-in-input'; export interface ViewPayInResult extends TypedError, ProfilingAttemptReference { Id?: string; Tag?: string; CreationDate?: string; AuthorId?: string; DebitedFunds?: PayInMoneyCard; CreditedFunds?: PayInMoneyCard; Fees?: PayInMoneyCard; ExecutionDate?: string; Nature?: string; PhoneNumber?: string; CreditedWalletId?: string; PaymentType?: string; ExecutionType?: string; StatementDescriptor?: string; Billing?: PayInBilling; Shipping?: PayInBilling; Date?: string; Message?: string; Type?: string; errors?: MgpTypedError; }