Source code for models_v2.s_3_grantee_type

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


[docs]class S3GranteeType(object): """Implementation of the 'S3 Grantee Type' model. Specifies S3 Grantee Type. Attributes: enum (Enum): Specifies S3 Grantee Type. """ # Create a mapping from Model property names to API property names _names = { "enum":'enum' } def __init__(self, enum=None): """Constructor for the S3GranteeType 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)