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 | 18 | public function __construct() |
|
16 | |||
17 | 2 | public function userId(int $id): UserTimeline |
|
23 | |||
24 | 2 | public function screenName(string $screenName): UserTimeline |
|
30 | |||
31 | 2 | public function amount(int $amount): UserTimeline |
|
37 | |||
38 | 2 | public function minimumId(int $id): UserTimeline |
|
44 | |||
45 | 2 | public function maximumId(int $id): UserTimeline |
|
51 | |||
52 | 2 | public function trimUser(): UserTimeline |
|
58 | |||
59 | 2 | public function excludeReplies(): UserTimeline |
|
65 | |||
66 | 2 | public function includeContributorDetails(): UserTimeline |
|
72 | |||
73 | 2 | public function excludeRetweets(): UserTimeline |
|
79 | } |
||
80 |