@sumup/sdk
    Preparing search index...

    Type Alias ReceiptMerchantData

    Receipt Merchant Data

    Merchant details displayed on a transaction receipt.

    type ReceiptMerchantData = {
        locale?: string;
        merchant_profile?: {
            address?: {
                address_line1?: string;
                address_line2?: string;
                city?: string;
                country?: string;
                country_en_name?: string;
                country_native_name?: string;
                landline?: string;
                post_code?: string;
                region_name?: string;
            };
            business_name?: string;
            company_registration_number?: string;
            email?: string;
            language?: string;
            merchant_code?: string;
            vat_id?: string;
            website?: string;
        };
    }
    Index
    locale?: string

    Locale used for rendering localized receipt fields.

    merchant_profile?: {
        address?: {
            address_line1?: string;
            address_line2?: string;
            city?: string;
            country?: string;
            country_en_name?: string;
            country_native_name?: string;
            landline?: string;
            post_code?: string;
            region_name?: string;
        };
        business_name?: string;
        company_registration_number?: string;
        email?: string;
        language?: string;
        merchant_code?: string;
        vat_id?: string;
        website?: string;
    }

    Merchant profile details displayed on the receipt.

    Type Declaration

    • Optionaladdress?: {
          address_line1?: string;
          address_line2?: string;
          city?: string;
          country?: string;
          country_en_name?: string;
          country_native_name?: string;
          landline?: string;
          post_code?: string;
          region_name?: string;
      }

      Business address of the merchant.

      • Optionaladdress_line1?: string

        First line of the merchant address.

      • Optionaladdress_line2?: string

        Second line of the merchant address.

      • Optionalcity?: string

        City of the merchant address.

      • Optionalcountry?: string

        Two-letter ISO 3166-1 alpha-2 country code of the merchant address.

      • Optionalcountry_en_name?: string

        English name of the country in the merchant address.

      • Optionalcountry_native_name?: string

        Localized name of the country in the merchant address.

      • Optionallandline?: string

        Landline phone number of the merchant.

      • Optionalpost_code?: string

        Postal code of the merchant address.

      • Optionalregion_name?: string

        Region or state of the merchant address.

    • Optionalbusiness_name?: string

      Business name of the merchant.

    • Optionalcompany_registration_number?: string

      Company registration number of the merchant.

    • Optionalemail?: string

      Email address of the merchant.

    • Optionallanguage?: string

      Language configured for the merchant profile.

    • Optionalmerchant_code?: string

      Short unique identifier for the merchant.

    • Optionalvat_id?: string

      VAT identification number of the merchant.

    • Optionalwebsite?: string

      Website of the merchant.