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
/*
* Linkbreakers API
*
* This is a documentation of all the APIs of Linkbreakers
*
* The version of the OpenAPI document: 1.91.4
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
/// ThemeColor : Reusable color payload used across design-oriented APIs (page themes, QR code designs, etc.). It supports solid colors and gradients with optional direction and per-stop offsets.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ThemeColor {
/// Color values in render order (hex, rgb/rgba, hsl/hsla).
#[serde(rename = "colors")]
pub colors: Vec<String>,
/// Optional direction for linear gradients (e.g. \"135deg\", \"to right\").
#[serde(rename = "direction", skip_serializing_if = "Option::is_none")]
pub direction: Option<String>,
/// Optional stop offsets aligned with `colors` (e.g. \"0%\", \"50%\", \"100%\").
#[serde(rename = "stops", skip_serializing_if = "Option::is_none")]
pub stops: Option<Vec<String>>,
#[serde(rename = "type")]
pub r#type: Type,
}
impl ThemeColor {
/// Reusable color payload used across design-oriented APIs (page themes, QR code designs, etc.). It supports solid colors and gradients with optional direction and per-stop offsets.
pub fn new(colors: Vec<String>, r#type: Type) -> ThemeColor {
ThemeColor {
colors,
direction: None,
stops: None,
r#type,
}
}
}
///
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum Type {
#[serde(rename = "THEME_COLOR_TYPE_UNSPECIFIED")]
ThemeColorTypeUnspecified,
#[serde(rename = "THEME_COLOR_TYPE_SOLID")]
ThemeColorTypeSolid,
#[serde(rename = "THEME_COLOR_TYPE_LINEAR")]
ThemeColorTypeLinear,
#[serde(rename = "THEME_COLOR_TYPE_RADIAL")]
ThemeColorTypeRadial,
}
impl Default for Type {
fn default() -> Type {
Self::ThemeColorTypeUnspecified
}
}