Files
n8n_Demo/n8n-n8n-1.109.2/packages/nodes-base/nodes/Wordpress/PostInterface.ts

18 lines
313 B
TypeScript
Raw Normal View History

2025-09-08 04:48:28 +08:00
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[];
}