1 | <?php |
||
21 | class ComponentTextStyles |
||
22 | { |
||
23 | /** @var ComponentTextStyle */ |
||
24 | private $default; |
||
25 | |||
26 | /** |
||
27 | * @SerializedName("default-body") |
||
28 | * |
||
29 | * @var ComponentTextStyle |
||
30 | */ |
||
31 | private $defaultBody; |
||
32 | |||
33 | /** |
||
34 | * @SerializedName("default-title") |
||
35 | * |
||
36 | * @var ComponentTextStyle |
||
37 | */ |
||
38 | private $defaultTitle; |
||
39 | |||
40 | /** |
||
41 | * @SerializedName("default-intro") |
||
42 | * |
||
43 | * @var ComponentTextStyle |
||
44 | */ |
||
45 | private $defaultIntro; |
||
46 | |||
47 | /** |
||
48 | * @SerializedName("default-byline") |
||
49 | * |
||
50 | * @var ComponentTextStyle |
||
51 | */ |
||
52 | private $defaultByline; |
||
53 | |||
54 | /** |
||
55 | * @SerializedName("default-quote") |
||
56 | * |
||
57 | * @var ComponentTextStyle|null |
||
58 | */ |
||
59 | private $defaultQuote; |
||
60 | |||
61 | /** |
||
62 | * @SerializedName("default-caption") |
||
63 | * |
||
64 | * @var ComponentTextStyle|null |
||
65 | */ |
||
66 | private $defaultCaption; |
||
67 | |||
68 | public function getDefault(): ComponentTextStyle |
||
72 | |||
73 | public function setDefault(ComponentTextStyle $default): void |
||
77 | |||
78 | public function getDefaultBody(): ComponentTextStyle |
||
82 | |||
83 | public function setDefaultBody(ComponentTextStyle $defaultBody): void |
||
87 | |||
88 | public function getDefaultTitle(): ?ComponentTextStyle |
||
92 | |||
93 | public function setDefaultTitle(ComponentTextStyle $defaultTitle): void |
||
97 | |||
98 | public function getDefaultIntro(): ?ComponentTextStyle |
||
102 | |||
103 | public function setDefaultIntro(ComponentTextStyle $defaultIntro): void |
||
107 | |||
108 | public function getDefaultByline(): ?ComponentTextStyle |
||
112 | |||
113 | public function setDefaultByline(ComponentTextStyle $defaultByline): void |
||
117 | |||
118 | public function getDefaultQuote(): ?ComponentTextStyle |
||
122 | |||
123 | public function setDefaultQuote(?ComponentTextStyle $defaultQuote): void |
||
127 | |||
128 | public function getDefaultCaption(): ?ComponentTextStyle |
||
132 | |||
133 | public function setDefaultCaption(?ComponentTextStyle $defaultCaption): void |
||
137 | } |
||
138 |