nmkr-studio-api
Version:
Typesafe API Client to work with the NMKR Studio V2 API
13 lines (12 loc) • 694 B
TypeScript
import type { NmkrPayPaymentgatewayParamatersClass } from './NmkrPayPaymentgatewayParamatersClass';
import type { NmkrPayTransactionTypes } from './NmkrPayTransactionTypes';
import type { PaymentTransactionNotificationsClass } from './PaymentTransactionNotificationsClass';
export type GetNmkrPayLinkClass = {
projectUid?: string | null;
referer?: string | null;
customerIpAddress?: string | null;
customProperties?: Record<string, string | null> | null;
paymentTransactionNotifications?: Array<PaymentTransactionNotificationsClass> | null;
paymentTransactionType?: NmkrPayTransactionTypes;
paymentgatewayParameters?: NmkrPayPaymentgatewayParamatersClass | null;
};