bluesnap
Version:
Node SDK for the BlueSnap Payment Gateway
13 lines (12 loc) • 533 B
TypeScript
import { CreditCardResponse } from '../../transaction/card/models/CreditCard';
import { BillingContactInfoResponse } from '../../vaultedShopper/models/BillingContactInfo';
import { ShippingContactInfoResponse } from '../../vaultedShopper/models/ShippingContactInfo';
export interface GetWalletResponse {
firstName: string;
lastName: string;
email: string;
country: string;
creditCard: CreditCardResponse;
billingContactInfo: BillingContactInfoResponse;
shippingContactInfo: ShippingContactInfoResponse;
}