propelauth 0.23.5

A Rust crate for managing authentication and authorization with support for multi-tenant / B2B products, powered by PropelAuth
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use std::collections::HashMap;

use serde_json::Value;

#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct FetchSignupQueryParamsResponse {
    #[serde(rename = "user_signup_query_parameters")]
    pub user_signup_query_parameters: HashMap<String, Value>,
}

impl FetchSignupQueryParamsResponse {
    pub fn new(user_signup_query_parameters: HashMap<String, Value>) -> Self {
        Self { user_signup_query_parameters }
    }
}