MCPcopy Index your code
hub / github.com/dataforseo/PythonClient / app_data_errors

Method app_data_errors

dataforseo_client/api/app_data_api.py:271–307  ·  view source on GitHub ↗
(
        self,
        list_optional_app_data_errors_request_info: 'List[Optional[AppDataErrorsRequestInfo]]' = None,
        _request_timeout: Union[
            None,
            Annotated[StrictFloat, Field(gt=0)],
            Tuple[
                Annotated[StrictFloat, Field(gt=0)],
                Annotated[StrictFloat, Field(gt=0)]
            ]
        ] = None,
        _request_auth: Optional[Dict[StrictStr, Any]] = None,
        _content_type: Optional[StrictStr] = None,
        _headers: Optional[Dict[StrictStr, Any]] = None,
        _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
    )

Source from the content-addressed store, hash-verified

269 from dataforseo_client.models.app_data_errors_response_info import AppDataErrorsResponseInfo
270 @validate_call
271 def app_data_errors(
272 self,
273 list_optional_app_data_errors_request_info: 'List[Optional[AppDataErrorsRequestInfo]]' = None,
274 _request_timeout: Union[
275 None,
276 Annotated[StrictFloat, Field(gt=0)],
277 Tuple[
278 Annotated[StrictFloat, Field(gt=0)],
279 Annotated[StrictFloat, Field(gt=0)]
280 ]
281 ] = None,
282 _request_auth: Optional[Dict[StrictStr, Any]] = None,
283 _content_type: Optional[StrictStr] = None,
284 _headers: Optional[Dict[StrictStr, Any]] = None,
285 _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
286 ) -> AppDataErrorsResponseInfo:
287
288 _param = self._app_data_errors_serialize(
289 list_optional_app_data_errors_request_info=list_optional_app_data_errors_request_info,
290 _request_auth=_request_auth,
291 _content_type=_content_type,
292 _headers=_headers,
293 _host_index=_host_index
294 )
295
296 _response_types_map: Dict[str, Optional[str]] = {
297 '200': "AppDataErrorsResponseInfo",
298 }
299 response_data = self.api_client.call_api(
300 *_param,
301 _request_timeout=_request_timeout
302 )
303 response_data.read()
304 return self.api_client.response_deserialize(
305 response_data=response_data,
306 response_types_map=_response_types_map,
307 ).data
308
309
310

Callers

nothing calls this directly

Calls 4

call_apiMethod · 0.80
readMethod · 0.80
response_deserializeMethod · 0.80

Tested by

no test coverage detected