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
15
#[derive(serde::Deserialize, serde::Serialize)]
pub struct Comprobante{
  #[serde(rename = "requestUuid")]
  pub request_uuid: String,
  pub encode: String
}

impl Comprobante {
  pub fn new()->Self{ Comprobante{
    request_uuid: String::new(),
    encode: String::new()
  } }
}