# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.
import cohesity_management_sdk.models.time
[docs]class BackupPolicyProtoOneOffSchedule(object):
"""Implementation of the 'BackupPolicyProto_OneOffSchedule' model.
TODO: type model description here.
Attributes:
time (Time): A message to encapusulate time of a day. Users of this
proto will have to store the timezone information separately. For
example, when this proto is part of a backup job, timezone of the
backup job is applied to get the absolute time.
"""
# Create a mapping from Model property names to API property names
_names = {
"time":'time'
}
def __init__(self,
time=None):
"""Constructor for the BackupPolicyProtoOneOffSchedule class"""
# Initialize members of the class
self.time = time
[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
time = cohesity_management_sdk.models.time.Time.from_dictionary(dictionary.get('time')) if dictionary.get('time') else None
# Return an object of this model
return cls(time)