import { INodeProperties } from 'n8n-workflow';

/**
 * UI parameters for the getDetail operation
 */
export const getDetailDescription: INodeProperties[] = [
	{
		displayName: 'MAC Address',
		name: 'macaddr',
		type: 'string',
		displayOptions: {
			show: {
				resource: ['client'],
				domain: ['monitoring'],
				operation: ['getDetail'],
			},
		},
		default: '',
		required: true,
		description: 'MAC address of the client',
	},
];
