import { INodeProperties } from 'n8n-workflow';

/**
 * Parameters for patchLabel operation
 */
export const patchLabelDescription: INodeProperties[] = [
	{
		displayName: 'Label_id',
		name: 'label_id',
		type: 'number',
		required: true,
		default: 0,
		displayOptions: {
			show: {
				resource: ['label'],
				domain: ['monitoring'],
				operation: ['patchLabel'],
			},
		},
		description: 'Label ID',
	},
];
