interface MicrosoftOneDriveTriggerNodeParameters {
event?:
| "folderCreated"
| "folderUpdated"
| "fileUpdated"
| "fileCreated";
fileId?: { mode: "id"
| "url"; value: string };
folderId?: { mode: "id" | "url"; value: string };
options?: { folderChild?: boolean };
pollTimes: {
item: { mode: string & {} | "everyMinute" }[];
};
simple?: boolean;
watch?: | "anyFile"
| "selectedFolder"
| "selectedFile"
| "anyFolder"
| "oneSelectedFolder";
watchFolder?: boolean;
}
Properties§
Source§readonly file Id?: { mode: "id" | "url"; value: string }
readonly file Id?: { mode: "id" | "url"; value: string }
The file to operate on. The 'By URL' option only accepts URLs that start with 'https://onedrive.live.com'. Default: {"mode":"id","value":""}
Source§readonly folder Id?: { mode: "id" | "url"; value: string }
readonly folder Id?: { mode: "id" | "url"; value: string }
The folder to operate on. The 'By URL' option only accepts URLs that start with 'https://onedrive.live.com'. Default: {"mode":"id","value":"","cachedResultName":""}
Source§readonly simple?: boolean
readonly simple?: boolean
Whether to return a simplified version of the response instead of the raw data Default: true
Default: "fileCreated"