langfuse_client_base/models/
blob_storage_integrations_response.rs1use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize, bon::Builder)]
15pub struct BlobStorageIntegrationsResponse {
16 #[serde(rename = "data")]
17 pub data: Vec<models::BlobStorageIntegrationResponse>,
18}
19
20impl BlobStorageIntegrationsResponse {
21 pub fn new(
22 data: Vec<models::BlobStorageIntegrationResponse>,
23 ) -> BlobStorageIntegrationsResponse {
24 BlobStorageIntegrationsResponse { data }
25 }
26}