simpay-typescript-api
Version:
SimPay.pl API wrapper
13 lines (12 loc) • 363 B
TypeScript
import type { AmountType } from '../../amount.type.js';
import type { DbServiceNotify } from '../service/db.service.js';
export interface DbTransactionRequest {
amount: number;
amountType?: AmountType;
description?: string;
control?: string;
returns?: DbServiceNotify;
phoneNumber?: string;
signature?: string;
steamid?: string;
}