# -*- coding: utf-8 -*- ''' # Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. # # This file was generated and any changes will be overwritten. ''' from __future__ import unicode_literals from ..one_drive_object_base import OneDriveObjectBase class StoragePlans(OneDriveObjectBase): def __init__(self, prop_dict=None): self._prop_dict = prop_dict if prop_dict is not None else {} @property def upgrade_available(self): """Gets and sets the upgradeAvailable Returns: bool: The upgradeAvailable """ if "upgradeAvailable" in self._prop_dict: return self._prop_dict["upgradeAvailable"] else: return None @upgrade_available.setter def upgrade_available(self, val): self._prop_dict["upgradeAvailable"] = val