mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00: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;
|
|
}
|