export interface TweetsParams {
    /**
    * A comma-separated list of ids to get metrics for
    */
    'ids': string;
    /**
    * A comma-separated list of fields to include for the tweet object
    */
    'tweet.fields'?: string;
    /**
    * A comma-separated list of fields to include for the media object
    */
    'media.fields'?: string;
    /**
    * Use expansion for media objects
    */
    'expansions'?: string;
}
