1 | <?php |
||
26 | class PeopleTVShowCrew extends Results |
||
27 | { |
||
28 | |||
29 | /** |
||
30 | * Credit Id |
||
31 | * @var string |
||
32 | */ |
||
33 | protected $credit_id = null; |
||
34 | |||
35 | /** |
||
36 | * name |
||
37 | * @var string |
||
38 | */ |
||
39 | protected $name = null; |
||
40 | |||
41 | /** |
||
42 | * Image poster path |
||
43 | * @var string |
||
44 | */ |
||
45 | protected $poster_path = null; |
||
46 | |||
47 | /** |
||
48 | * original name |
||
49 | * @var string |
||
50 | */ |
||
51 | protected $original_name = null; |
||
52 | |||
53 | /** |
||
54 | * First air date |
||
55 | * @var string |
||
56 | */ |
||
57 | protected $first_air_date = null; |
||
58 | |||
59 | /** |
||
60 | * Id |
||
61 | * @var int |
||
62 | */ |
||
63 | protected $id = null; |
||
64 | |||
65 | /** |
||
66 | * Department |
||
67 | * @var string |
||
68 | */ |
||
69 | protected $department = null; |
||
70 | |||
71 | /** |
||
72 | * Job |
||
73 | * @var string |
||
74 | */ |
||
75 | protected $job = null; |
||
76 | |||
77 | /** |
||
78 | * Episode count |
||
79 | * @var int |
||
80 | */ |
||
81 | protected $episode_count = null; |
||
82 | |||
83 | /** |
||
84 | * Constructor |
||
85 | * @param \vfalies\tmdb\Interfaces\TmdbInterface $tmdb |
||
86 | * @param \stdClass $result |
||
87 | */ |
||
88 | 10 | public function __construct(TmdbInterface $tmdb, \stdClass $result) |
|
105 | |||
106 | /** |
||
107 | * Get Id |
||
108 | * @return int |
||
109 | */ |
||
110 | 1 | public function getId() |
|
114 | |||
115 | /** |
||
116 | * Get credit Id |
||
117 | * @return string |
||
118 | */ |
||
119 | 1 | public function getCreditId() |
|
123 | |||
124 | /** |
||
125 | * Get department name |
||
126 | * @return string |
||
127 | */ |
||
128 | 1 | public function getDepartment() |
|
132 | |||
133 | /** |
||
134 | * Get job |
||
135 | * @return string |
||
136 | */ |
||
137 | 1 | public function getJob() |
|
141 | |||
142 | /** |
||
143 | * Get name |
||
144 | * @return string |
||
145 | */ |
||
146 | 1 | public function getName() |
|
150 | |||
151 | /** |
||
152 | * Get original ,name |
||
153 | * @return string |
||
154 | */ |
||
155 | 1 | public function getOriginalName() |
|
159 | |||
160 | /** |
||
161 | * Get poster path |
||
162 | * @return string |
||
163 | */ |
||
164 | 1 | public function getPosterPath() |
|
168 | |||
169 | /** |
||
170 | * Get first air date |
||
171 | * @return string |
||
172 | */ |
||
173 | 1 | public function getFirstAirDate() |
|
177 | |||
178 | /** |
||
179 | * Episode count |
||
180 | * @return int |
||
181 | */ |
||
182 | 1 | public function getEpisodeCount() |
|
186 | |||
187 | } |
||
188 |