# -*- coding: utf-8 -*-
[docs]class CommonFileAndFolderInfo(object):
"""Implementation of the 'Common File And Folder Info' model.
Specifies the information about the specific file or folder to recover.
Attributes:
absolute_path (string): Specifies the absolute path to the file or
folder.
destination_dir (string): Specifies the destination directory where
the file/directory was copied.
is_directory (bool): Specifies whether this is a directory or not.
status (Status8Enum): Specifies the recovery status for this file or
folder.
messages (list of string): Specify error messages about the file
during recovery.
"""
# Create a mapping from Model property names to API property names
_names = {
"absolute_path":'absolutePath',
"destination_dir":'destinationDir',
"is_directory":'isDirectory',
"status":'status',
"messages":'messages'
}
def __init__(self,
absolute_path=None,
destination_dir=None,
is_directory=None,
status=None,
messages=None):
"""Constructor for the CommonFileAndFolderInfo class"""
# Initialize members of the class
self.absolute_path = absolute_path
self.destination_dir = destination_dir
self.is_directory = is_directory
self.status = status
self.messages = messages
[docs] @classmethod
def from_dictionary(cls,
dictionary):
"""Creates an instance of this model from a dictionary
Args:
dictionary (dictionary): A dictionary representation of the object as
obtained from the deserialization of the server's response. The keys
MUST match property names in the API description.
Returns:
object: An instance of this structure class.
"""
if dictionary is None:
return None
# Extract variables from the dictionary
absolute_path = dictionary.get('absolutePath')
destination_dir = dictionary.get('destinationDir')
is_directory = dictionary.get('isDirectory')
status = dictionary.get('status')
messages = dictionary.get('messages')
# Return an object of this model
return cls(absolute_path,
destination_dir,
is_directory,
status,
messages)