mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
26 lines
478 B
TypeScript
26 lines
478 B
TypeScript
import type { IDataObject } from 'n8n-workflow';
|
|
|
|
export interface ITweet {
|
|
auto_populate_reply_metadata?: boolean;
|
|
display_coordinates?: boolean;
|
|
lat?: number;
|
|
long?: number;
|
|
media_ids?: string;
|
|
possibly_sensitive?: boolean;
|
|
status: string;
|
|
in_reply_to_status_id?: string;
|
|
}
|
|
|
|
export interface ITweetCreate {
|
|
type: 'message_create';
|
|
message_create: {
|
|
target: {
|
|
recipient_id: string;
|
|
};
|
|
message_data: {
|
|
text: string;
|
|
attachment?: IDataObject;
|
|
};
|
|
};
|
|
}
|