Total Complexity | 6 |
Total Lines | 48 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
26 | class JoinMeetingResponse extends BaseResponse |
||
27 | { |
||
28 | /** |
||
29 | * @return string |
||
30 | */ |
||
31 | public function getMeetingId() |
||
32 | { |
||
33 | return $this->rawXml->meeting_id->__toString(); |
||
34 | } |
||
35 | |||
36 | /** |
||
37 | * @return string |
||
38 | */ |
||
39 | public function getUserId() |
||
40 | { |
||
41 | return $this->rawXml->user_id->__toString(); |
||
42 | } |
||
43 | |||
44 | /** |
||
45 | * @return string |
||
46 | */ |
||
47 | public function getAuthToken() |
||
50 | } |
||
51 | |||
52 | /** |
||
53 | * @return string |
||
54 | */ |
||
55 | public function getSessionToken() |
||
56 | { |
||
57 | return $this->rawXml->session_token->__toString(); |
||
58 | } |
||
59 | |||
60 | /** |
||
61 | * @return string |
||
62 | */ |
||
63 | public function getGuestStatus() |
||
64 | { |
||
65 | return $this->rawXml->guestStatus->__toString(); |
||
66 | } |
||
67 | |||
68 | /** |
||
69 | * @return string |
||
70 | */ |
||
71 | public function getUrl() |
||
74 | } |
||
75 | } |
||
76 |