1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/*
* langfuse
*
* ## Authentication Authenticate with the API using [Basic Auth](https://en.wikipedia.org/wiki/Basic_access_authentication), get API keys in the project settings: - username: Langfuse Public Key - password: Langfuse Secret Key ## Exports - OpenAPI spec: https://cloud.langfuse.com/generated/api/openapi.yml
*
* The version of the OpenAPI document:
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize, bon::Builder)]
pub struct GetMediaUploadUrlRequest {
/// The trace ID associated with the media record
#[serde(rename = "traceId")]
pub trace_id: String,
/// The observation ID associated with the media record. If the media record is associated directly with a trace, this will be null.
#[serde(
rename = "observationId",
default,
with = "::serde_with::rust::double_option",
skip_serializing_if = "Option::is_none"
)]
pub observation_id: Option<Option<String>>,
#[serde(rename = "contentType")]
pub content_type: models::MediaContentType,
/// The size of the media record in bytes
#[serde(rename = "contentLength")]
pub content_length: i32,
/// The SHA-256 hash of the media record
#[serde(rename = "sha256Hash")]
pub sha256_hash: String,
/// The trace / observation field the media record is associated with. This can be one of `input`, `output`, `metadata`
#[serde(rename = "field")]
pub field: String,
}
impl GetMediaUploadUrlRequest {
pub fn new(
trace_id: String,
content_type: models::MediaContentType,
content_length: i32,
sha256_hash: String,
field: String,
) -> GetMediaUploadUrlRequest {
GetMediaUploadUrlRequest {
trace_id,
observation_id: None,
content_type,
content_length,
sha256_hash,
field,
}
}
}