class documentation

class MembersGetInfoItemV2(MembersGetInfoItemBase): (source)

View In Hierarchy

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 TeamMemberInfoV2 MembersGetInfoItemV2.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 is_other Check if the union tag is ``other``.
Class Variable other Undocumented
Method _process_custom_annotations Undocumented
Class Variable _catch_all 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``.
@classmethod
def member_info(cls, val): (source)

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

def get_member_info(self): (source)

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

def is_member_info(self): (source)

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

def is_other(self): (source)

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

Undocumented

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