n8n/packages/nodes-base/nodes/Wordpress/PageInterface.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
300 B
TypeScript
Raw Normal View History

export interface IPage {
author?: number;
comment_status?: string;
content?: string;
featured_media?: number;
id?: number;
menu_order?: number;
page?: number;
parent?: number;
password?: string;
ping_status?: string;
slug?: string;
status?: string;
template?: string;
title?: string;
}