@sumup/sdk
Version:
The official TypeScript SDK for the SumUp API
35 lines • 902 B
TypeScript
/**
* Receipt Merchant Data
*
* Receipt merchant data
*/
export type ReceiptMerchantData = {
/**
* Merchant profile details displayed on the receipt.
*/
merchant_profile?: {
merchant_code?: string;
business_name?: string;
company_registration_number?: string;
vat_id?: string;
website?: string;
email?: string;
language?: string;
address?: {
address_line1?: string;
address_line2?: string;
city?: string;
country?: string;
country_en_name?: string;
country_native_name?: string;
region_name?: string;
post_code?: string;
landline?: string;
};
};
/**
* Locale used for rendering localized receipt fields.
*/
locale?: string;
};
//# sourceMappingURL=receipt-merchant-data.d.ts.map