1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
use serde::{Deserialize, Serialize};

use super::{EndpointInfo, Input, KrakenInput, MethodType, Output, SystemStatus};

/// Request builder for the Get System Status endpoint
pub struct KISystemStatus();

impl KISystemStatus {
    /// Constructor returning a [KrakenInput] builder for the get server time endpoint.
    /// There are no inputs to this endpoint so finish() is called for you
    pub fn build() -> KrakenInput {
        let status = KISystemStatus();
        status.finish()
    }
}

impl Input for KISystemStatus {
    fn finish(self) -> KrakenInput {
        KrakenInput {
            info: EndpointInfo {
                methodtype: MethodType::Public,
                endpoint: String::from("SystemStatus"),
            },
            params: None,
        }
    }

    fn finish_clone(self) -> (KrakenInput, Self) {
        (
            KrakenInput {
                info: EndpointInfo {
                    methodtype: MethodType::Public,
                    endpoint: String::from("SystemStatus"),
                },
                params: None,
            },
            self,
        )
    }
}

/// Response from the Get System Status endpoint
#[derive(Deserialize, Serialize, Debug)]
pub struct KOSystemStatus {
    /// Current system status or trading mode
    pub status: SystemStatus,
    /// Server time
    pub timestamp: String,
}

impl Output for KOSystemStatus {}