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
use anyhow::Result;

use crate::Client;

pub struct Businesses {
    pub client: Client,
}

impl Businesses {
    #[doc(hidden)]
    pub fn new(client: Client) -> Self {
        Businesses { client }
    }

    /**
     * GET business metadata.
     *
     * This function performs a `GET` to the `/business` endpoint.
     *
     * Gets metadata about a business.
     *
     * **Parameters:**
     *
     * * `authorization: &str` -- The OAuth2 token header.
     */
    pub async fn get_resources_busine(&self) -> Result<crate::types::Business> {
        let url = "/business".to_string();
        self.client.get(&url, None).await
    }

    /**
     * GET current info about a business.
     *
     * This function performs a `GET` to the `/business/balance` endpoint.
     *
     * Gets current information about a business.
     *
     * **Parameters:**
     *
     * * `authorization: &str` -- The OAuth2 token header.
     */
    pub async fn get_resources_business_current(
        &self,
    ) -> Result<crate::types::BusinessCurrentStatus> {
        let url = "/business/balance".to_string();
        self.client.get(&url, None).await
    }
}