count integer <= 100 Default: 100 The number of results displayed on one page. page integer Default: 1 The page number for listing the results. order string Default: "asc" Enum: "asc" "desc" Th
(kwargs: dict)
| 157 | |
| 158 | @staticmethod |
| 159 | def query_parameters(kwargs: dict): |
| 160 | """ |
| 161 | count |
| 162 | integer <= 100 |
| 163 | Default: 100 |
| 164 | The number of results displayed on one page. |
| 165 | |
| 166 | page |
| 167 | integer |
| 168 | Default: 1 |
| 169 | The page number for listing the results. |
| 170 | |
| 171 | order |
| 172 | string |
| 173 | Default: "asc" |
| 174 | Enum: "asc" "desc" |
| 175 | The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last. |
| 176 | """ |
| 177 | return { |
| 178 | "count": kwargs.get('count', None), |
| 179 | "page": kwargs.get('page', None), |
| 180 | "order": kwargs.get('order', None), |
| 181 | } |
no outgoing calls
no test coverage detected