@@ -584,24 +584,24 @@ public Webhook createWebhook(CreateUpdateWebhookRequest createUpdateWebhookReque
584584 /**
585585 * Update the configuration for the specified webhook. To remove a field, set its value to null.
586586 *
587- * @param webhook_uuid Uuid v4 identifier of a webhook.
587+ * @param webhookUuid Uuid v4 identifier of a webhook.
588588 * @param createUpdateWebhookRequest Request body containing new header or url.
589589 * @return A single webhook instance.
590590 * @throws MeilisearchException If an error occurs.
591591 */
592592 public Webhook updateWebhook (
593- UUID webhook_uuid , CreateUpdateWebhookRequest createUpdateWebhookRequest )
593+ UUID webhookUuid , CreateUpdateWebhookRequest createUpdateWebhookRequest )
594594 throws MeilisearchException {
595- return this .webHooksHandler .updateWebhook (webhook_uuid , createUpdateWebhookRequest );
595+ return this .webHooksHandler .updateWebhook (webhookUuid , createUpdateWebhookRequest );
596596 }
597597
598598 /**
599599 * Delete a webhook and stop sending task completion data to the target URL.
600600 *
601- * @param webhook_uuid Uuid v4 identifier of a webhook.
601+ * @param webhookUuid Uuid v4 identifier of a webhook.
602602 */
603- public void deleteWebhook (UUID webhook_uuid ) throws MeilisearchException {
604- this .webHooksHandler .deleteWebhook (webhook_uuid );
603+ public void deleteWebhook (UUID webhookUuid ) throws MeilisearchException {
604+ this .webHooksHandler .deleteWebhook (webhookUuid );
605605 }
606606
607607 private Boolean isValidUUID (String apiKeyUid ) {
0 commit comments