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
52
53
54
55
56
57
58
59
60
61
62
63
64
use crate::Client;
use crate::ClientResult;
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,
) -> ClientResult<crate::Response<crate::types::Business>> {
let url = self.client.url("/business", None);
self.client
.get(
&url,
crate::Message {
body: None,
content_type: 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,
) -> ClientResult<crate::Response<crate::types::BusinessCurrentStatus>> {
let url = self.client.url("/business/balance", None);
self.client
.get(
&url,
crate::Message {
body: None,
content_type: None,
},
)
.await
}
}