# -*- 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 datetime import datetime from ..one_drive_object_base import OneDriveObjectBase class FileSystemInfo(OneDriveObjectBase): def __init__(self, prop_dict=None): self._prop_dict = prop_dict if prop_dict is not None else {} @property def created_date_time(self): """Gets and sets the createdDateTime Returns: datetime: The createdDateTime """ if "createdDateTime" in self._prop_dict: if '.' in self._prop_dict["createdDateTime"]: return datetime.strptime(self._prop_dict["createdDateTime"].replace("Z", ""), "%Y-%m-%dT%H:%M:%S.%f") else: return datetime.strptime(self._prop_dict["createdDateTime"].replace("Z", ""), "%Y-%m-%dT%H:%M:%S") else: return None @created_date_time.setter def created_date_time(self, val): self._prop_dict["createdDateTime"] = val.isoformat()+((".0" if val.time().microsecond == 0 else "")+"Z") @property def last_modified_date_time(self): """Gets and sets the lastModifiedDateTime Returns: datetime: The lastModifiedDateTime """ if "lastModifiedDateTime" in self._prop_dict: if '.' in self._prop_dict["lastModifiedDateTime"]: return datetime.strptime(self._prop_dict["lastModifiedDateTime"].replace("Z", ""), "%Y-%m-%dT%H:%M:%S.%f") else: return datetime.strptime(self._prop_dict["lastModifiedDateTime"].replace("Z", ""), "%Y-%m-%dT%H:%M:%S") else: return None @last_modified_date_time.setter def last_modified_date_time(self, val): self._prop_dict["lastModifiedDateTime"] = val.isoformat()+((".0" if val.time().microsecond == 0 else "")+"Z")