Source code for models_v2.s_3_acl_permission

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


[docs]class S3ACLPermission(object): """Implementation of the 'S3 ACL Permission' model. Specifies S3 ACL permission type. Attributes: enum (Enum1Enum): Specifies S3 ACL permission type. """ # Create a mapping from Model property names to API property names _names = { "enum":'enum' } def __init__(self, enum=None): """Constructor for the S3ACLPermission class""" # Initialize members of the class self.enum = enum
[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 enum = dictionary.get('enum') # Return an object of this model return cls(enum)