# -*- 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 SpecialFolder(OneDriveObjectBase): def __init__(self, prop_dict=None): self._prop_dict = prop_dict if prop_dict is not None else {} @property def name(self): """Gets and sets the name Returns: str: The name """ if "name" in self._prop_dict: return self._prop_dict["name"] else: return None @name.setter def name(self, val): self._prop_dict["name"] = val