Files
Agent-n8n/n8n-n8n-1.109.2/packages/nodes-base/nodes/Wordpress/PostInterface.ts
2025-09-08 04:48:28 +08:00

18 lines
313 B
TypeScript
Executable File

export interface IPost {
date?: string;
author?: number;
id?: number;
title?: string;
content?: string;
slug?: string;
password?: string;
status?: string;
comment_status?: string;
ping_status?: string;
format?: string;
sticky?: boolean;
template?: string;
categories?: number[];
tags?: number[];
}