trieve_client/models/recommendation_analytics_response.rs
1/*
2 * Trieve API
3 *
4 * Trieve OpenAPI Specification. This document describes all of the operations available through the Trieve API.
5 *
6 * The version of the OpenAPI document: 0.11.7
7 * Contact: developers@trieve.ai
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12
13#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
14#[serde(untagged)]
15pub enum RecommendationAnalyticsResponse {
16 RecommendationsEventResponse(Box<models::RecommendationsEventResponse>),
17}
18
19impl Default for RecommendationAnalyticsResponse {
20 fn default() -> Self {
21 Self::RecommendationsEventResponse(Default::default())
22 }
23}
24