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
58
59
60
61
62
63
64
65
66
67
68
/*
* Zernio API
*
* API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
*
* The version of the OpenAPI document: 1.0.1
* Contact: support@zernio.com
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
/// YouTubePlatformData : Videos under 3 min auto-detected as Shorts. Custom thumbnails for regular videos only. Scheduled videos are uploaded immediately with the specified visibility.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct YouTubePlatformData {
/// Video title. Defaults to first line of content or \"Untitled Video\". Must be ≤ 100 characters.
#[serde(rename = "title", skip_serializing_if = "Option::is_none")]
pub title: Option<String>,
/// Video visibility: public (default, anyone can watch), unlisted (link only), private (invite only)
#[serde(rename = "visibility", skip_serializing_if = "Option::is_none")]
pub visibility: Option<Visibility>,
/// COPPA compliance flag. Set true for child-directed content (restricts comments, notifications, ad targeting). Defaults to false. YouTube may block views if not explicitly set.
#[serde(rename = "madeForKids", skip_serializing_if = "Option::is_none")]
pub made_for_kids: Option<bool>,
/// Optional first comment to post immediately after video upload. Up to 10,000 characters (YouTube's comment limit).
#[serde(rename = "firstComment", skip_serializing_if = "Option::is_none")]
pub first_comment: Option<String>,
/// AI-generated content disclosure. Set true if the video contains synthetic content that could be mistaken for real. YouTube may add a label.
#[serde(
rename = "containsSyntheticMedia",
skip_serializing_if = "Option::is_none"
)]
pub contains_synthetic_media: Option<bool>,
/// YouTube video category ID. Defaults to 22 (People & Blogs). Common: 1 (Film), 2 (Autos), 10 (Music), 15 (Pets), 17 (Sports), 20 (Gaming), 23 (Comedy), 24 (Entertainment), 25 (News), 26 (Howto), 27 (Education), 28 (Science & Tech).
#[serde(rename = "categoryId", skip_serializing_if = "Option::is_none")]
pub category_id: Option<String>,
}
impl YouTubePlatformData {
/// Videos under 3 min auto-detected as Shorts. Custom thumbnails for regular videos only. Scheduled videos are uploaded immediately with the specified visibility.
pub fn new() -> YouTubePlatformData {
YouTubePlatformData {
title: None,
visibility: None,
made_for_kids: None,
first_comment: None,
contains_synthetic_media: None,
category_id: None,
}
}
}
/// Video visibility: public (default, anyone can watch), unlisted (link only), private (invite only)
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum Visibility {
#[serde(rename = "public")]
Public,
#[serde(rename = "private")]
Private,
#[serde(rename = "unlisted")]
Unlisted,
}
impl Default for Visibility {
fn default() -> Visibility {
Self::Public
}
}