jacquard-api 0.12.0-beta.2

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: social.showcase.profile.updateProfile
//
// This file was automatically generated from Lexicon schemas.
// Any manual changes will be overwritten on the next regeneration.

#[allow(unused_imports)]
use alloc::collections::BTreeMap;

use crate::social_showcase::ProfileView;
use crate::social_showcase::ShowcaseItem;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::blob::BlobRef;
use jacquard_common::types::string::UriValue;
use jacquard_common::types::value::Data;
use jacquard_common::{BosStr, CowStr, DefaultStr, FromStaticStr};
use jacquard_derive::IntoStatic;
use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(
    rename_all = "camelCase",
    bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct UpdateProfile<S: BosStr = DefaultStr> {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub avatar: Option<BlobRef<S>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub banner: Option<BlobRef<S>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub bio: Option<S>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub display_name: Option<S>,
    ///Featured showcase items
    #[serde(skip_serializing_if = "Option::is_none")]
    pub showcase: Option<Vec<ShowcaseItem<S>>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub tags: Option<Vec<S>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub website: Option<UriValue<S>>,
    #[serde(flatten, default, skip_serializing_if = "Option::is_none")]
    pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
    rename_all = "camelCase",
    bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct UpdateProfileOutput<S: BosStr = DefaultStr> {
    #[serde(flatten)]
    pub value: ProfileView<S>,
    #[serde(flatten, default, skip_serializing_if = "Option::is_none")]
    pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}

/// Response type for social.showcase.profile.updateProfile
pub struct UpdateProfileResponse;
impl jacquard_common::xrpc::XrpcResp for UpdateProfileResponse {
    const NSID: &'static str = "social.showcase.profile.updateProfile";
    const ENCODING: &'static str = "application/json";
    type Output<S: BosStr> = UpdateProfileOutput<S>;
    type Err = jacquard_common::xrpc::GenericError;
}

impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for UpdateProfile<S> {
    const NSID: &'static str = "social.showcase.profile.updateProfile";
    const METHOD: jacquard_common::xrpc::XrpcMethod =
        jacquard_common::xrpc::XrpcMethod::Procedure("application/json");
    type Response = UpdateProfileResponse;
}

/// Endpoint type for social.showcase.profile.updateProfile
pub struct UpdateProfileRequest;
impl jacquard_common::xrpc::XrpcEndpoint for UpdateProfileRequest {
    const PATH: &'static str = "/xrpc/social.showcase.profile.updateProfile";
    const METHOD: jacquard_common::xrpc::XrpcMethod =
        jacquard_common::xrpc::XrpcMethod::Procedure("application/json");
    type Request<S: BosStr> = UpdateProfile<S>;
    type Response = UpdateProfileResponse;
}