Beispiel #1
0
 def update_lot(
         self,
         phone_number: uplink.Path(),
         lot: uplink.Path(),
         **lot_data: uplink.FieldMap(),
 ):
     """Update the lot."""
Beispiel #2
0
    def new_version(self, latest_version_id: uplink.Path(name='id')):
        """Invoke the "New version" action on a deposition.

        Returns:
          The ID of the new version.
        """
        pass
Beispiel #3
0
 def get_latest_version_id(self, record_id: uplink.Path(name='id')):
     """Retrieves only the latest version ID of a record."""
     pass
Beispiel #4
0
 def delete_lot(
         self,
         phone_number: uplink.Path(),
         lot: uplink.Path(),
 ):
     """Removes the lot."""
Beispiel #5
0
 def add_lot(
         self,
         phone_number: uplink.Path(),
         **lot_data: uplink.FieldMap(),
 ):
     """Add a lot."""
 def entry_by_id(
     self, post_id: uplink.Path("post_id")) -> requests.models.Response:
     """Get a single entry by passing its ID"""
     pass