Skip to main content

ably_chat_openapi/apis/
configuration.rs

1/*
2 * Ably Chat REST API
3 *
4 * REST API for [Ably Chat](https://ably.com/docs/chat).  This specification describes the HTTP surface of the Ably Chat REST API (path prefix `/chat/v4`) that the official Chat client SDKs use for request/response operations such as sending, editing, deleting and querying messages, message reactions and room occupancy.  ## Scope & provenance Ably does **not** publish an official OpenAPI document for the Chat REST API (the official `ably/open-specs` `platform-v1.yaml` covers only the generic pub/sub REST API: `/channels`, `/push`, `/keys`, `/stats`, `/time`). This document was reconstructed from the `@ably/chat` JavaScript SDK v1.4.0 REST layer (`src/core/chat-api.ts`, `src/core/rest-types.ts`) together with Ably's documented REST conventions (host, authentication, versioning, pagination, error envelope).  It therefore covers the endpoints the client SDK exercises. It is **not** an exhaustive description of every server capability, and there are intentionally no endpoints for creating or deleting rooms: Chat rooms are channel-backed and implicit — they are not provisioned via REST.  ## Realtime vs REST Many Chat features (presence, typing indicators, room reactions, subscribing to live messages and reaction summaries) are delivered over Ably's realtime/pub-sub transport, not this REST API, and are out of scope here. 
5 *
6 * The version of the OpenAPI document: 4
7 * 
8 * Generated by: https://openapi-generator.tech
9 */
10
11
12
13#[derive(Debug, Clone)]
14pub struct Configuration {
15    pub base_path: String,
16    pub user_agent: Option<String>,
17    pub client: reqwest::Client,
18    pub basic_auth: Option<BasicAuth>,
19    pub oauth_access_token: Option<String>,
20    pub bearer_access_token: Option<String>,
21    pub api_key: Option<ApiKey>,
22}
23
24pub type BasicAuth = (String, Option<String>);
25
26#[derive(Debug, Clone)]
27pub struct ApiKey {
28    pub prefix: Option<String>,
29    pub key: String,
30}
31
32
33impl Configuration {
34    pub fn new() -> Configuration {
35        Configuration::default()
36    }
37}
38
39impl Default for Configuration {
40    fn default() -> Self {
41        Configuration {
42            base_path: "https://rest.ably.io".to_owned(),
43            user_agent: Some("OpenAPI-Generator/4/rust".to_owned()),
44            client: reqwest::Client::new(),
45            basic_auth: None,
46            oauth_access_token: None,
47            bearer_access_token: None,
48            api_key: None,
49        }
50    }
51}