Files
n8n-nodes-gwezz-oceanengine/nodes/GwezzOceanengine/resources/user/get.ts
2025-10-30 16:15:19 +08:00

18 lines
363 B
TypeScript

import type { INodeProperties } from 'n8n-workflow';
const showOnlyForUserGet = {
operation: ['get'],
resource: ['user'],
};
export const userGetDescription: INodeProperties[] = [
{
displayName: 'User ID',
name: 'userId',
type: 'string',
displayOptions: { show: showOnlyForUserGet },
default: '',
description: "The user's ID to retrieve",
},
];