class documentation

Describes a result obtained for a single user whose id was specified in the parameter of :meth:`dropbox.dropbox_client.Dropbox.team_members_get_info`. This class acts as a tagged union. Only one of the ``is_*`` methods will return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. :ivar TeamMemberInfo MembersGetInfoItem.member_info: Info about a team member.

Class Method member_info Create an instance of this class set to the ``member_info`` tag with value ``val``.
Method get_member_info Info about a team member.
Method is_member_info Check if the union tag is ``member_info``.
Method _process_custom_annotations Undocumented

Inherited from MembersGetInfoItemBase:

Class Method id_not_found Create an instance of this class set to the ``id_not_found`` tag with value ``val``.
Method get_id_not_found An ID that was provided as a parameter to :meth:`dropbox.dropbox_client.Dropbox.team_members_get_info` or :meth:`dropbox.dropbox_client.Dropbox.team_members_get_info`, and did not match a corresponding user...
Method is_id_not_found Check if the union tag is ``id_not_found``.
Class Variable _catch_all Undocumented
@classmethod
def member_info(cls, val): (source)

Create an instance of this class set to the ``member_info`` tag with value ``val``. :param TeamMemberInfo val: :rtype: MembersGetInfoItem

def get_member_info(self): (source)

Info about a team member. Only call this if :meth:`is_member_info` is true. :rtype: TeamMemberInfo

def is_member_info(self): (source)

Check if the union tag is ``member_info``. :rtype: bool

def _process_custom_annotations(self, annotation_type, field_path, processor): (source)