use crate::NifiError;
#[allow(unused_variables, async_fn_in_trait, clippy::too_many_arguments)]
pub trait SnippetsApi {
async fn create_snippet(
&self,
body: &crate::v2_7_2::types::SnippetEntity,
) -> Result<crate::v2_7_2::types::SnippetEntity, NifiError>;
async fn delete_snippet(
&self,
id: &str,
disconnected_node_acknowledged: Option<bool>,
) -> Result<crate::v2_7_2::types::SnippetEntity, NifiError>;
async fn update_snippet(
&self,
id: &str,
body: &crate::v2_7_2::types::SnippetEntity,
) -> Result<crate::v2_7_2::types::SnippetEntity, NifiError>;
}