ergani 0.2.1

Rust SDK for the Greek government Ergani API for employee workflows
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[derive(bon::Builder, Clone)]
pub struct LoginPayload {
    username: String,
    password: String,
}

impl LoginPayload {
    pub fn username(&self) -> &str {
        &self.username
    }

    pub fn password(&self) -> &str {
        &self.password
    }
}