use tmflib::tmf637::v4::product::Product;
use super::{create_tmf, delete_tmf, get_tmf, list_tmf, update_tmf};
use crate::common::tmf_error::TMFError;
#[cfg(not(feature = "blocking"))]
use crate::AsyncOperations;
#[cfg(feature = "blocking")]
use crate::BlockingOperations;
use crate::{Config, HasNew};
pub struct TMF637ProductInventoryManagement {
config: Config,
}
impl TMF637ProductInventoryManagement {
pub fn new(config: Config) -> TMF637ProductInventoryManagement {
TMF637ProductInventoryManagement { config }
}
}
#[cfg(feature = "blocking")]
impl BlockingOperations for TMF637ProductInventoryManagement {
type TMF = Product;
fn create(&self, item: Self::TMF) -> Result<Self::TMF, TMFError> {
create_tmf(&self.config, item)
}
fn delete(&self, id: impl Into<String>) -> Result<Self::TMF, TMFError> {
delete_tmf(&self.config, id.into())
}
fn get(&self, id: impl Into<String>) -> Result<Vec<Self::TMF>, TMFError> {
get_tmf(&self.config, id.into())
}
fn list(&self, filter: Option<crate::QueryOptions>) -> Result<Vec<Self::TMF>, TMFError> {
list_tmf(&self.config, filter)
}
fn update(&self, id: impl Into<String>, patch: Self::TMF) -> Result<Self::TMF, TMFError> {
update_tmf(&self.config, id.into(), patch)
}
}
#[cfg(not(feature = "blocking"))]
impl AsyncOperations for TMF637ProductInventoryManagement {
type TMF = Product;
async fn create(&self, item: Self::TMF) -> Result<Self::TMF, TMFError> {
create_tmf(&self.config, item).await
}
async fn delete(&self, id: impl Into<String>) -> Result<Self::TMF, TMFError> {
delete_tmf(&self.config, id.into()).await
}
async fn get(&self, id: impl Into<String>) -> Result<Vec<Self::TMF>, TMFError> {
get_tmf(&self.config, id.into()).await
}
async fn list(&self, filter: Option<crate::QueryOptions>) -> Result<Vec<Self::TMF>, TMFError> {
list_tmf(&self.config, filter).await
}
async fn update(&self, id: impl Into<String>, patch: Self::TMF) -> Result<Self::TMF, TMFError> {
update_tmf(&self.config, id.into(), patch).await
}
}
#[derive(Clone, Default, Debug)]
pub struct TMF637 {
config: Config,
}
impl HasNew<TMF637> for TMF637 {
fn new(config: Config) -> TMF637 {
TMF637 { config }
}
}
impl TMF637 {
pub fn product(&mut self) -> TMF637ProductInventoryManagement {
super::tmf637::TMF637ProductInventoryManagement::new(self.config.clone())
}
}