facture_rs 0.1.2

A wrapper for the FactureApp API service.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::belling::utils::json::entity::Entity;

#[derive(serde::Deserialize, serde::Serialize)]
pub struct JsonRaw{
  pub entity: Entity
}

impl JsonRaw {
  pub fn new() -> Self{
    JsonRaw{
      entity: Entity::new()
    }
  }
}