class documentation

class MobileClientPlatform(bb.Union): (source)

View In Hierarchy

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 team.MobileClientPlatform.iphone: Official Dropbox iPhone client. :ivar team.MobileClientPlatform.ipad: Official Dropbox iPad client. :ivar team.MobileClientPlatform.android: Official Dropbox Android client. :ivar team.MobileClientPlatform.windows_phone: Official Dropbox Windows phone client. :ivar team.MobileClientPlatform.blackberry: Official Dropbox Blackberry client.

Method is_android Check if the union tag is ``android``.
Method is_blackberry Check if the union tag is ``blackberry``.
Method is_ipad Check if the union tag is ``ipad``.
Method is_iphone Check if the union tag is ``iphone``.
Method is_other Check if the union tag is ``other``.
Method is_windows_phone Check if the union tag is ``windows_phone``.
Class Variable android Undocumented
Class Variable blackberry Undocumented
Class Variable ipad Undocumented
Class Variable iphone Undocumented
Class Variable other Undocumented
Class Variable windows_phone Undocumented
Method _process_custom_annotations Undocumented
Class Variable _catch_all Undocumented
def is_android(self): (source)

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

def is_blackberry(self): (source)

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

def is_ipad(self): (source)

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

def is_iphone(self): (source)

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

def is_other(self): (source)

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

def is_windows_phone(self): (source)

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

Undocumented

blackberry = (source)

Undocumented

Undocumented

Undocumented

Undocumented

windows_phone = (source)

Undocumented

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

Undocumented

_catch_all: str = (source)

Undocumented