opentalk-client-requests-api-v1 0.0.2

Datatypes that describe requests to the endpoints of the OpenTalk v1 API to be used by clients
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// SPDX-FileCopyrightText: OpenTalk GmbH <mail@opentalk.eu>
//
// SPDX-License-Identifier: EUPL-1.2

//! Requests for the API endpoints under `/events`

mod events_get_by_id_request;
mod events_get_request;
mod events_invites_post_request;
mod events_post_request;

pub use events_get_by_id_request::EventsGetByIdRequest;
pub use events_get_request::EventsGetRequest;
pub use events_invites_post_request::EventsInvitesPostRequest;
pub use events_post_request::EventsPostRequest;