1# coding=utf-8
2# --------------------------------------------------------------------------
3# Copyright (c) Microsoft Corporation. All rights reserved.
4# Licensed under the MIT License. See License.txt in the project root for
5# license information.
6#
7# Code generated by Microsoft (R) AutoRest Code Generator.
8# Changes may cause incorrect behavior and will be lost if the code is
9# regenerated.
10# --------------------------------------------------------------------------
11
12from msrest.paging import Paged
13
14
15class DeletedStorageAccountItemPaged(Paged):
16    """
17    A paging container for iterating over a list of :class:`DeletedStorageAccountItem <azure.keyvault.v7_0.models.DeletedStorageAccountItem>` object
18    """
19
20    _attribute_map = {
21        'next_link': {'key': 'nextLink', 'type': 'str'},
22        'current_page': {'key': 'value', 'type': '[DeletedStorageAccountItem]'}
23    }
24
25    def __init__(self, *args, **kwargs):
26
27        super(DeletedStorageAccountItemPaged, self).__init__(*args, **kwargs)
28