Files
Automata/packages/nodes-base/nodes/SyncroMSP/v1/actions/customer/get/description.ts
Michael Kret 91d7e16c81 n8n-3867-progressively-apply-prettier-to-all (#3873)
* 🔨 formatting nodes with prettier
2022-08-17 17:50:24 +02:00

19 lines
368 B
TypeScript

import { CustomerProperties } from '../../Interfaces';
export const customerGetDescription: CustomerProperties = [
{
displayName: 'Cutomer ID',
name: 'customerId',
type: 'string',
required: true,
displayOptions: {
show: {
resource: ['customer'],
operation: ['get'],
},
},
default: '',
description: 'Get specific customer by ID',
},
];