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
/*
* Zernio API
*
* API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
*
* The version of the OpenAPI document: 1.0.1
* Contact: support@zernio.com
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ConnectBlueskyCredentialsRequest {
/// Your Bluesky handle (e.g. user.bsky.social) or email address
#[serde(rename = "identifier")]
pub identifier: String,
/// App password generated from Bluesky Settings > App Passwords
#[serde(rename = "appPassword")]
pub app_password: String,
/// Required state formatted as {userId}-{profileId}. Get userId from GET /v1/users and profileId from GET /v1/profiles.
#[serde(rename = "state")]
pub state: String,
/// Optional URL to redirect to after successful connection
#[serde(rename = "redirectUri", skip_serializing_if = "Option::is_none")]
pub redirect_uri: Option<String>,
}
impl ConnectBlueskyCredentialsRequest {
pub fn new(
identifier: String,
app_password: String,
state: String,
) -> ConnectBlueskyCredentialsRequest {
ConnectBlueskyCredentialsRequest {
identifier,
app_password,
state,
redirect_uri: None,
}
}
}