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 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
use crate::client::Graph; use graph_http::types::Collection; use graph_http::types::Content; use graph_http::types::DeltaPhantom; use graph_http::GraphResponse; use graph_http::IntoResponse; use handlebars::*; use reqwest::Method; register_client!(InstanceRequest,); register_client!(InstancesRequest, ()); impl<'a, Client> InstanceRequest<'a, Client> where Client: graph_http::RequestClient, { pub fn id<ID: AsRef<str>>(&self, id: ID) -> InstancesRequest<'a, Client> { InstancesRequest::new(id.as_ref(), self.client) } get!({ doc: "# Get instances from me", name: list_instances, response: Collection<serde_json::Value>, path: "/instances", params: 0, has_body: false }); post!({ doc: "# Create new navigation property to instances for me", name: create_instances, response: serde_json::Value, path: "/instances", params: 0, has_body: true }); get!({ doc: "# Invoke function delta", name: delta, response: DeltaPhantom<serde_json::Value>, path: "/instances/delta()", params: 0, has_body: false }); } impl<'a, Client> InstancesRequest<'a, Client> where Client: graph_http::RequestClient, { get!({ doc: "# Get instances from me", name: get_instances, response: serde_json::Value, path: "/instances/{{RID}}", params: 0, has_body: false }); patch!({ doc: "# Update the navigation property instances in me", name: update_instances, response: GraphResponse<Content>, path: "/instances/{{RID}}", params: 0, has_body: true }); post!({ doc: "# Invoke action accept", name: accept, response: GraphResponse<Content>, path: "/instances/{{RID}}/accept", params: 0, has_body: true }); post!({ doc: "# Invoke action decline", name: decline, response: GraphResponse<Content>, path: "/instances/{{RID}}/decline", params: 0, has_body: true }); post!({ doc: "# Invoke action dismissReminder", name: dismiss_reminder, response: GraphResponse<Content>, path: "/instances/{{RID}}/dismissReminder", params: 0, has_body: false }); post!({ doc: "# Invoke action snoozeReminder", name: snooze_reminder, response: GraphResponse<Content>, path: "/instances/{{RID}}/snoozeReminder", params: 0, has_body: true }); post!({ doc: "# Invoke action tentativelyAccept", name: tentatively_accept, response: GraphResponse<Content>, path: "/instances/{{RID}}/tentativelyAccept", params: 0, has_body: true }); }