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
use crate::client::Graph;
use graph_http::IntoResponse;
use reqwest::Method;
register_client!(ExtendedPropertiesRequest,);
impl<'a, Client> ExtendedPropertiesRequest<'a, Client>
where
Client: graph_http::RequestClient,
{
get!({
name: get_multi_value_extended_properties,
response: serde_json::Value,
path: "/multiValueExtendedProperties/{{id}}",
params: 1,
has_body: false
});
get!({
name: create_multi_value_extended_properties,
response: serde_json::Value,
path: "/multiValueExtendedProperties",
params: 0,
has_body: true
});
get!({
name: get_single_value_extended_properties,
response: serde_json::Value,
path: "/singleValueExtendedProperties/{{id}}",
params: 1,
has_body: false
});
get!({
name: create_single_value_extended_properties,
response: serde_json::Value,
path: "/singleValueExtendedProperties",
params: 0,
has_body: true
});
}