12 lines
273 B
TypeScript
12 lines
273 B
TypeScript
|
|
import type { INodeProperties } from 'n8n-workflow';
|
||
|
|
|
||
|
|
export const paymentAdditionalFieldsOptions: INodeProperties[] = [
|
||
|
|
{
|
||
|
|
displayName: 'Transaction Date',
|
||
|
|
name: 'TxnDate',
|
||
|
|
description: 'Date when the transaction occurred',
|
||
|
|
type: 'dateTime',
|
||
|
|
default: '',
|
||
|
|
},
|
||
|
|
];
|