mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 12:35:46 +03:00
11 lines
234 B
TypeScript
11 lines
234 B
TypeScript
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;
|
|
}
|