1 | <?php declare(strict_types=1); |
||
7 | class UserTimeline extends BaseRequest |
||
8 | { |
||
9 | const METHOD = 'GET'; |
||
10 | const ENDPOINT = '/statuses/user_timeline.json'; |
||
11 | |||
12 | public function __construct() |
||
16 | |||
17 | public function userId(int $id): UserTimeline |
||
23 | |||
24 | public function screenName(string $screenName): UserTimeline |
||
30 | |||
31 | public function amount(int $amount): UserTimeline |
||
37 | |||
38 | public function minimumId(int $id): UserTimeline |
||
44 | |||
45 | public function maximumId(int $id): UserTimeline |
||
51 | |||
52 | public function trimUser(): UserTimeline |
||
58 | |||
59 | public function excludeReplies(): UserTimeline |
||
65 | |||
66 | public function includeContributorDetails(): UserTimeline |
||
72 | |||
73 | public function excludeRetweets(): UserTimeline |
||
79 | } |
||
80 |