File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -33,6 +33,10 @@ class GetRecordingsParameters extends MetaParameters
3333
3434 private ?string $ state = null ;
3535
36+ private ?int $ offset = null ;
37+
38+ private ?int $ limit = null ;
39+
3640 #[ApiParameterMapper(attributeName: 'meetingID ' )]
3741 public function getMeetingId (): ?string
3842 {
@@ -72,6 +76,32 @@ public function setState(string $state): self
7276 return $ this ;
7377 }
7478
79+ #[ApiParameterMapper(attributeName: 'offset ' )]
80+ public function getOffset (): ?int
81+ {
82+ return $ this ->offset ;
83+ }
84+
85+ public function setOffset (?int $ offset ): self
86+ {
87+ $ this ->offset = $ offset ;
88+
89+ return $ this ;
90+ }
91+
92+ #[ApiParameterMapper(attributeName: 'limit ' )]
93+ public function getLimit (): ?int
94+ {
95+ return $ this ->limit ;
96+ }
97+
98+ public function setLimit (?int $ limit ): self
99+ {
100+ $ this ->limit = $ limit ;
101+
102+ return $ this ;
103+ }
104+
75105 public function getHTTPQuery (): string
76106 {
77107 $ queries = $ this ->toApiDataArray ();
Original file line number Diff line number Diff line change 2727 */
2828class GetRecordingsResponse extends BaseResponse
2929{
30+ public function getTotalElements (): ?int
31+ {
32+ if (!$ this ->rawXml ->totalElements ) {
33+ return null ;
34+ }
35+
36+ return (int ) $ this ->rawXml ->totalElements ->__toString ();
37+ }
38+
3039 /**
3140 * @return Record[]
3241 */
You can’t perform that action at this time.
0 commit comments