1
0
Fork 0
mirror of https://github.com/n8n-io/n8n.git synced 2025-03-05 20:50:17 -08:00
n8n/packages/nodes-base/nodes/Wordpress/PostInterface.ts

17 lines
278 B
TypeScript
Raw Normal View History

2020-01-02 14:34:48 -08:00
export interface IPost {
author?: number;
2020-01-02 14:34:48 -08:00
id?: number;
title?: string;
content?: string;
slug?: string;
password?: string;
status?: string;
comment_status?: string;
ping_status?: string;
format?: string;
sticky?: boolean;
categories?: number[];
tags?: number[];
}