import { MgpTypedError, ProfilingAttemptReference, TypedError } from '@mangopay/checkout-sdk-core'; import { UpdateCardRegistrationInput } from '../update-card-registration'; export interface TokenizePaymentMethodResult extends TypedError, ProfilingAttemptReference { Id?: string; Tag?: string; CreationDate?: string; UserId?: string; AccessKey?: string; PreregistrationData?: string; RegistrationData?: string; CardId?: string; CardType?: string; CardRegistrationURL?: string; Currency?: string; Date?: string; Message?: string; Type?: string; errors?: MgpTypedError; }