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
#[derive(serde::Deserialize, serde::Serialize)]
pub struct Sucursal{
  pub id: usize
}

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