UNPKG

@paytrail/paytrail-js-sdk

Version:

The goal for this project is to develop a Javascript SDK for the Paytrail payment service. The aim is to provide JS developers with an easier and more streamlined way to integrate our API into their applications.

28 lines (27 loc) 763 B
import { Commission } from './commission.model'; import 'reflect-metadata'; /** * Class ShopInShopItem */ export declare class ShopInShopItem { /** * Item level order ID (suborder ID). Mainly useful for Shop-in-Shop purchases. */ orderId?: string; /** * Unique identifier for this item. Required for Shop-in-Shop payments. Required for item refunds. */ stamp: string; /** * Reference for this item. Required for Shop-in-Shop payments. */ reference: string; /** * Merchant ID for the item. Required for Shop-in-Shop payments, do not use for normal payments. */ merchant: string; /** * Shop-in-Shop commission. Do not use for normal payments. */ commission?: Commission; }