n8n-nodes-nextcloud-deck
Version:
n8n Node für die Integration mit Nextcloud Deck - AI Agent Tool Support
25 lines (24 loc) • 520 B
TypeScript
export interface IComment {
id: number;
objectType: string;
objectId: number;
actorType: string;
actorId: string;
actorDisplayName: string;
message: string;
creationDateTime: string;
latestChildDateTime?: string;
verb: string;
mentions?: IMention[];
}
export interface IMention {
mentionId: string;
mentionType: string;
mentionDisplayName: string;
}
export interface ICommentCreate {
message: string;
}
export interface ICommentUpdate {
message: string;
}