Source code for models_v2.audit_logs_actions

# -*- coding: utf-8 -*-


[docs]class AuditLogsActions(object): """Implementation of the 'AuditLogsActions' model. Specifies actions of audit logs. Attributes: actions (list of string): Specifies a list of audit logs actions. """ # Create a mapping from Model property names to API property names _names = { "actions":'actions' } def __init__(self, actions=None): """Constructor for the AuditLogsActions class""" # Initialize members of the class self.actions = actions
[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 actions = dictionary.get('actions') # Return an object of this model return cls(actions)