Esempio n. 1
0
 def update_lot(
         self,
         phone_number: uplink.Path(),
         lot: uplink.Path(),
         **lot_data: uplink.FieldMap(),
 ):
     """Update the lot."""
Esempio n. 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
Esempio n. 3
0
 def get_latest_version_id(self, record_id: uplink.Path(name='id')):
     """Retrieves only the latest version ID of a record."""
     pass
Esempio n. 4
0
 def delete_lot(
         self,
         phone_number: uplink.Path(),
         lot: uplink.Path(),
 ):
     """Removes the lot."""
Esempio n. 5
0
 def add_lot(
         self,
         phone_number: uplink.Path(),
         **lot_data: uplink.FieldMap(),
 ):
     """Add a lot."""
Esempio n. 6
0
 def entry_by_id(
     self, post_id: uplink.Path("post_id")) -> requests.models.Response:
     """Get a single entry by passing its ID"""
     pass