facture_rs 0.1.3

A wrapper for the FactureApp API service.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[derive(serde::Deserialize, serde::Serialize)]
pub struct Emisor{
  pub id: usize
}

impl Emisor {
  pub fn new() -> Self {
    Emisor{
      id: 0
    }
  }
}