sig
  val mentions_timeline :
    ?count:int ->
    ?since_id:int64 ->
    ?max_id:int64 ->
    ?trim_user:bool ->
    ?contributer_details:bool ->
    ?include_entities:bool ->
    Oauth.t ->
    [> `Error of
         [> `Http of int * string
          | `Json of Api_intf.Json.t Meta_conv.Error.t ]
     | `Ok of Api_intf.Tweet.ts ]
  val user_timeline :
    ?count:int ->
    ?since_id:int64 ->
    ?max_id:int64 ->
    ?user_id:int64 ->
    ?screen_name:string ->
    ?trim_user:bool ->
    ?exclude_replies:bool ->
    ?contributer_details:bool ->
    ?include_rts:bool ->
    Oauth.t ->
    [> `Error of
         [> `Http of int * string
          | `Json of Api_intf.Json.t Meta_conv.Error.t ]
     | `Ok of Api_intf.Tweet.ts ]
  val home_timeline :
    ?count:int ->
    ?since_id:int64 ->
    ?max_id:int64 ->
    ?trim_user:bool ->
    ?exclude_replies:bool ->
    ?contributer_details:bool ->
    ?include_entities:bool ->
    Oauth.t ->
    [> `Error of
         [> `Http of int * string
          | `Json of Api_intf.Json.t Meta_conv.Error.t ]
     | `Ok of Api_intf.Tweet.ts ]
  val retweets_of_me :
    ?count:int ->
    ?since_id:int64 ->
    ?max_id:int64 ->
    ?trim_user:bool ->
    ?include_entities:bool ->
    ?include_user_entities:bool ->
    Oauth.t ->
    [> `Error of
         [> `Http of int * string
          | `Json of Api_intf.Json.t Meta_conv.Error.t ]
     | `Ok of Api_intf.Tweet.ts ]
end