## Delete `pets.delete(floatpet_id, PetDeleteParams**kwargs) -> PetDeleteResponse` **delete** `/pets/{petId}` ### Parameters - `pet_id: float` - `body: Optional[Body]` ### Returns - `class PetDeleteResponse: …` - `message: str` ### Example ```python import os from barkend import Barkend client = Barkend( bearer_token=os.environ.get("BARKEND_BEARER_TOKEN"), # This is the default and can be omitted ) pet = client.pets.delete( pet_id=0, ) print(pet.message) ```