# SPDX-License-Identifier: BSD-3-Clause # Copyright (C) 2018 Intel Corporation. # All rights reserved. def notify_get_types(client): return client.call("notify_get_types") def notify_get_notifications(client, id=None, max=None): """ Args: id First ID to start fetching from max Maximum number of notifications to return in response Return: Notifications array """ params = {} if id: params['id'] = id if max: params['max'] = max return client.call("notify_get_notifications", params)