clerk_rs/models/
verify_client_request.rs

1/*
2 * Clerk Backend API
3 *
4 * The Clerk REST Backend API, meant to be accessed by backend servers. Please see https://clerk.com/docs for more information.
5 *
6 * The version of the OpenAPI document: v1
7 * Contact: support@clerk.com
8 * Generated by: https://openapi-generator.tech
9 */
10
11#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
12pub struct VerifyClientRequest {
13	/// A JWT Token that represents the active client.
14	#[serde(rename = "token", skip_serializing_if = "Option::is_none")]
15	pub token: Option<String>,
16}
17
18impl VerifyClientRequest {
19	pub fn new() -> VerifyClientRequest {
20		VerifyClientRequest { token: None }
21	}
22}