class documentation

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 FileMetadata SaveUrlResult.complete: Metadata of the file where the URL is saved to.

Class Method complete Create an instance of this class set to the ``complete`` tag with value ``val``.
Method get_complete Metadata of the file where the URL is saved to.
Method is_complete Check if the union tag is ``complete``.
Method _process_custom_annotations Undocumented

Inherited from LaunchResultBase:

Class Method async_job_id Create an instance of this class set to the ``async_job_id`` tag with value ``val``.
Method get_async_job_id This response indicates that the processing is asynchronous. The string is an id that can be used to obtain the status of the asynchronous job.
Method is_async_job_id Check if the union tag is ``async_job_id``.
Class Variable _catch_all Undocumented
@classmethod
def complete(cls, val): (source)

Create an instance of this class set to the ``complete`` tag with value ``val``. :param FileMetadata val: :rtype: SaveUrlResult

def get_complete(self): (source)

Metadata of the file where the URL is saved to. Only call this if :meth:`is_complete` is true. :rtype: FileMetadata

def is_complete(self): (source)

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

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