/*
* Ory APIs
*
* Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers.
*
* The version of the OpenAPI document: v1.6.1
* Contact: support@ory.sh
* Generated by: https://openapi-generator.tech
*/
/// GetAttributesCountResponse : Response of the getAttributesCount endpoint
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct GetAttributesCountResponse {
/// The list of data points.
#[serde(rename = "data")]
pub data: Vec<crate::models::AttributesCountDatapoint>,
}
impl GetAttributesCountResponse {
/// Response of the getAttributesCount endpoint
pub fn new(data: Vec<crate::models::AttributesCountDatapoint>) -> GetAttributesCountResponse {
GetAttributesCountResponse {
data,
}
}
}