hey_sdk/generated/services/
mod.rs1#![allow(missing_docs, unreachable_pub, clippy::all, clippy::pedantic)]
4
5pub mod attachments;
6pub mod boxes;
7pub mod bulk_replies;
8pub mod calendar_events;
9pub mod calendar_periods;
10pub mod calendar_todos;
11pub mod calendars;
12pub mod clearances;
13pub mod clips;
14pub mod collections;
15pub mod contacts;
16pub mod designations;
17pub mod entries;
18pub mod extenzions;
19pub mod folders;
20pub mod habits;
21pub mod identity;
22pub mod journal;
23pub mod messages;
24pub mod postings;
25pub mod publications;
26pub mod search;
27pub mod snippets;
28pub mod stickies;
29pub mod time_tracks;
30pub mod topics;
31pub mod workflows;
32
33use crate::client::Client;
34
35impl Client {
36 pub fn attachments(&self) -> attachments::Attachments<'_> {
37 attachments::Attachments::new(self)
38 }
39
40 pub fn boxes(&self) -> boxes::Boxes<'_> {
41 boxes::Boxes::new(self)
42 }
43
44 pub fn bulk_replies(&self) -> bulk_replies::BulkReplies<'_> {
45 bulk_replies::BulkReplies::new(self)
46 }
47
48 pub fn calendar_events(&self) -> calendar_events::CalendarEvents<'_> {
49 calendar_events::CalendarEvents::new(self)
50 }
51
52 pub fn calendar_periods(&self) -> calendar_periods::CalendarPeriods<'_> {
53 calendar_periods::CalendarPeriods::new(self)
54 }
55
56 pub fn calendar_todos(&self) -> calendar_todos::CalendarTodos<'_> {
57 calendar_todos::CalendarTodos::new(self)
58 }
59
60 pub fn calendars(&self) -> calendars::Calendars<'_> {
61 calendars::Calendars::new(self)
62 }
63
64 pub fn clearances(&self) -> clearances::Clearances<'_> {
65 clearances::Clearances::new(self)
66 }
67
68 pub fn clips(&self) -> clips::Clips<'_> {
69 clips::Clips::new(self)
70 }
71
72 pub fn collections(&self) -> collections::Collections<'_> {
73 collections::Collections::new(self)
74 }
75
76 pub fn contacts(&self) -> contacts::Contacts<'_> {
77 contacts::Contacts::new(self)
78 }
79
80 pub fn designations(&self) -> designations::Designations<'_> {
81 designations::Designations::new(self)
82 }
83
84 pub fn entries(&self) -> entries::Entries<'_> {
85 entries::Entries::new(self)
86 }
87
88 pub fn extenzions(&self) -> extenzions::Extenzions<'_> {
89 extenzions::Extenzions::new(self)
90 }
91
92 pub fn folders(&self) -> folders::Folders<'_> {
93 folders::Folders::new(self)
94 }
95
96 pub fn habits(&self) -> habits::Habits<'_> {
97 habits::Habits::new(self)
98 }
99
100 pub fn identity(&self) -> identity::Identity<'_> {
101 identity::Identity::new(self)
102 }
103
104 pub fn journal(&self) -> journal::Journal<'_> {
105 journal::Journal::new(self)
106 }
107
108 pub fn messages(&self) -> messages::Messages<'_> {
109 messages::Messages::new(self)
110 }
111
112 pub fn postings(&self) -> postings::Postings<'_> {
113 postings::Postings::new(self)
114 }
115
116 pub fn publications(&self) -> publications::Publications<'_> {
117 publications::Publications::new(self)
118 }
119
120 pub fn search(&self) -> search::Search<'_> {
121 search::Search::new(self)
122 }
123
124 pub fn snippets(&self) -> snippets::Snippets<'_> {
125 snippets::Snippets::new(self)
126 }
127
128 pub fn stickies(&self) -> stickies::Stickies<'_> {
129 stickies::Stickies::new(self)
130 }
131
132 pub fn time_tracks(&self) -> time_tracks::TimeTracks<'_> {
133 time_tracks::TimeTracks::new(self)
134 }
135
136 pub fn topics(&self) -> topics::Topics<'_> {
137 topics::Topics::new(self)
138 }
139
140 pub fn workflows(&self) -> workflows::Workflows<'_> {
141 workflows::Workflows::new(self)
142 }
143}