@@ -75,13 +75,27 @@ class NewsletterEntity extends BaseEntity {
75
75
* @var bool
76
76
*/
77
77
private $ automaticTime ;
78
+
79
+ /**
80
+ * @in
81
+ * @out
82
+ * @var bool
83
+ */
84
+ private $ unlimited ;
78
85
79
86
/**
80
87
* @in
81
88
* @out
82
89
* @var integer
83
90
*/
84
91
private $ recipientsListId ;
92
+
93
+ /**
94
+ * @in
95
+ * @out
96
+ * @var integer
97
+ */
98
+ private $ dataPersistence ;
85
99
86
100
/**
87
101
* @in
@@ -90,14 +104,23 @@ class NewsletterEntity extends BaseEntity {
90
104
*/
91
105
private $ campaign ;
92
106
107
+ /**
108
+ * @in
109
+ * @out
110
+ * @var string
111
+ */
112
+ private $ csvUrl ;
113
+
93
114
/**
94
- *
115
+ * @in
116
+ * @out
95
117
* @var string
96
118
*/
97
119
private $ templateUrl ;
98
120
99
121
/**
100
- *
122
+ * @in
123
+ * @out
101
124
* @var string
102
125
*/
103
126
private $ unsubscribeTemplateUrl ;
@@ -116,6 +139,13 @@ class NewsletterEntity extends BaseEntity {
116
139
* @var LinkEntity
117
140
*/
118
141
private $ company ;
142
+
143
+ /**
144
+ * @in
145
+ * @out
146
+ * @var string
147
+ */
148
+ private $ text ;
119
149
120
150
public function getId () {
121
151
return $ this ->id ;
@@ -270,5 +300,39 @@ public function setTemplateUrl($templateUrl) {
270
300
public function setUnsubscribeTemplateUrl ($ unsubscribeTemplateUrl ) {
271
301
$ this ->unsubscribeTemplateUrl = $ unsubscribeTemplateUrl ;
272
302
}
303
+
304
+ public function getUnlimited () {
305
+ return $ this ->unlimited ;
306
+ }
307
+
308
+ public function getDataPersistence () {
309
+ return $ this ->dataPersistence ;
310
+ }
311
+
312
+ public function getCsvUrl () {
313
+ return $ this ->csvUrl ;
314
+ }
315
+
316
+ public function getText () {
317
+ return $ this ->text ;
318
+ }
319
+
320
+ public function setUnlimited ($ unlimited ) {
321
+ $ this ->unlimited = $ unlimited ;
322
+ }
323
+
324
+ public function setDataPersistence ($ dataPersistence ) {
325
+ $ this ->dataPersistence = $ dataPersistence ;
326
+ }
327
+
328
+ public function setCsvUrl ($ csvUrl ) {
329
+ $ this ->csvUrl = $ csvUrl ;
330
+ }
331
+
332
+ public function setText ($ text ) {
333
+ $ this ->text = $ text ;
334
+ }
335
+
336
+
273
337
274
338
}
0 commit comments