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
13
14
15
16
use crate::{sucursal::utils::filters::SucursalFilters};

pub struct SucursalInput {
  pub bearer: String,
  pub filters: SucursalFilters
}

impl SucursalInput {
  pub fn new() -> Self{
    SucursalInput{
      bearer: String::new(),
      filters: SucursalFilters::new()
    }
  }
}