clerk-rs 0.4.2

The official community Rust SDK for the Clerk API
Documentation
/*
 * Clerk Backend API
 *
 * The Clerk REST Backend API, meant to be accessed by backend servers. Please see https://clerk.com/docs for more information.
 *
 * The version of the OpenAPI document: v1
 * Contact: support@clerk.com
 * Generated by: https://openapi-generator.tech
 */

#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct OrganizationMemberships {
	#[serde(rename = "data")]
	pub data: Vec<crate::models::OrganizationMembership>,
	/// Total number of organization memberships
	#[serde(rename = "total_count")]
	pub total_count: i64,
}

impl OrganizationMemberships {
	pub fn new(data: Vec<crate::models::OrganizationMembership>, total_count: i64) -> OrganizationMemberships {
		OrganizationMemberships { data, total_count }
	}
}