uber_rides/client.py [740:770]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                         offset=None,
                         limit=None,
                         from_time=None,
                         to_time=None
                         ):
        """Get trips about the authorized Uber driver.

        Parameters
            offset (int)
                The integer offset for activity results. Offset the list of
                returned results by this amount. Default is zero.
            limit (int)
                Integer amount of results to return. Number of items to
                retrieve per page. Default is 10, maximum is 50.
            from_time (int)
                Unix timestamp of the start time to query. Queries starting
                from the first trip if omitted.
            to_time (int)
                Unix timestamp of the end time to query. Queries starting
                from the last trip if omitted.

        Returns
            (Response)
                A Response object containing trip information.
        """
        args = {
            'offset': offset,
            'limit': limit,
            'from_time': from_time,
            'to_time': to_time,
        }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



uber_rides/client.py [774:804]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                            offset=None,
                            limit=None,
                            from_time=None,
                            to_time=None
                            ):
        """Get payments about the authorized Uber driver.

        Parameters
            offset (int)
                The integer offset for activity results. Offset the list of
                returned results by this amount. Default is zero.
            limit (int)
                Integer amount of results to return. Number of items to
                retrieve per page. Default is 10, maximum is 50.
            from_time (int)
                Unix timestamp of the start time to query. Queries starting
                from the first trip if omitted.
            to_time (int)
                Unix timestamp of the end time to query. Queries starting
                from the last trip if omitted.

        Returns
            (Response)
                A Response object containing trip information.
        """
        args = {
            'offset': offset,
            'limit': limit,
            'from_time': from_time,
            'to_time': to_time,
        }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



