66
77class Style extends AbstractUnzerResource
88{
9- protected ?string $ fontFamily = null ;
10- protected ?string $ buttonColor = null ;
11- protected ?string $ primaryTextColor = null ;
12- protected ?string $ linkColor = null ;
9+ protected ?bool $ hideUnzerLogo = null ;
10+ protected ?bool $ shadows = null ;
1311 protected ?string $ backgroundColor = null ;
12+ protected ?string $ backgroundImage = null ;
13+ protected ?string $ brandColor = null ;
1414 protected ?string $ cornerRadius = null ;
15- protected ?bool $ shadows = null ;
16- protected ?bool $ hideUnzerLogo = null ;
15+ protected ?string $ font = null ;
16+ protected ?string $ footerColor = null ;
17+ protected ?string $ headerColor = null ;
18+ protected ?string $ logoImage = null ;
19+ protected ?string $ linkColor = null ;
20+ protected ?string $ textColor = null ;
1721
18- public function getFontFamily (): ?string
22+ public function getLogoImage (): ?string
1923 {
20- return $ this ->fontFamily ;
24+ return $ this ->logoImage ;
2125 }
2226
23- public function setFontFamily (?string $ fontFamily ): Style
27+ public function setLogoImage (?string $ logoImage ): Style
2428 {
25- $ this ->fontFamily = $ fontFamily ;
29+ $ this ->logoImage = $ logoImage ;
2630 return $ this ;
2731 }
2832
29- public function getButtonColor (): ?string
33+ public function getFont (): ?string
3034 {
31- return $ this ->buttonColor ;
35+ return $ this ->font ;
3236 }
3337
34- public function setButtonColor (?string $ buttonColor ): Style
38+ public function setFont (?string $ font ): Style
3539 {
36- $ this ->buttonColor = $ buttonColor ;
40+ $ this ->font = $ font ;
3741 return $ this ;
3842 }
3943
40- public function getPrimaryTextColor (): ?string
44+ public function getBrandColor (): ?string
4145 {
42- return $ this ->primaryTextColor ;
46+ return $ this ->brandColor ;
4347 }
4448
45- public function setPrimaryTextColor (?string $ primaryTextColor ): Style
49+ public function setBrandColor (?string $ brandColor ): Style
4650 {
47- $ this ->primaryTextColor = $ primaryTextColor ;
51+ $ this ->brandColor = $ brandColor ;
52+ return $ this ;
53+ }
54+
55+ public function getTextColor (): ?string
56+ {
57+ return $ this ->textColor ;
58+ }
59+
60+ public function setTextColor (?string $ textColor ): Style
61+ {
62+ $ this ->textColor = $ textColor ;
4863 return $ this ;
4964 }
5065
@@ -102,4 +117,37 @@ public function setHideUnzerLogo(?bool $hideUnzerLogo): Style
102117 $ this ->hideUnzerLogo = $ hideUnzerLogo ;
103118 return $ this ;
104119 }
120+
121+ public function getBackgroundImage (): ?string
122+ {
123+ return $ this ->backgroundImage ;
124+ }
125+
126+ public function setBackgroundImage (?string $ backgroundImage ): Style
127+ {
128+ $ this ->backgroundImage = $ backgroundImage ;
129+ return $ this ;
130+ }
131+
132+ public function getFooterColor (): ?string
133+ {
134+ return $ this ->footerColor ;
135+ }
136+
137+ public function setFooterColor (?string $ footerColor ): Style
138+ {
139+ $ this ->footerColor = $ footerColor ;
140+ return $ this ;
141+ }
142+
143+ public function getHeaderColor (): ?string
144+ {
145+ return $ this ->headerColor ;
146+ }
147+
148+ public function setHeaderColor (?string $ headerColor ): Style
149+ {
150+ $ this ->headerColor = $ headerColor ;
151+ return $ this ;
152+ }
105153}
0 commit comments