bluesnap
Version:
Node SDK for the BlueSnap Payment Gateway
32 lines (31 loc) • 728 B
TypeScript
/**
* Contains information about a shopper who is paying with the alternative payment method
*/
export interface PayerInfoRequest {
firstName: string;
lastName: string;
personalIdentificationNumber?: string;
email?: string;
country?: string;
state?: string;
address?: string;
address2?: string;
city?: string;
zip?: string;
phone?: string;
companyName?: string;
merchantShopperId?: string;
}
export interface PayerInfoResponse {
firstName: string;
lastName: string;
personalIdentificationNumber: string;
email: string;
country: string;
state: string;
address: string;
address2: string;
city: string;
zip: string;
phone: string;
}