[docs]asyncdefunsubscribe(self:"houndapi.HoundAPI",subscription_id:str,)->Union[SubscriptionResponse,None]:'''Unsubscribe Args: subscription_id (str): the subscription id Returns: Union[None, :class:`houndapi.schema.responses.subscription.SubscriptionResponse`]'''try:res=awaitself.delete(endpoint=f"/api/unsubscribe/{subscription_id}",)returnSubscriptionResponse(**res)exceptExceptionase:get_logger().info(f"Failed to Unsubscribe ({e})",extra={"endpoint":f"/api/unsubscribe/{subscription_id}"})