-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCampaignData.php
More file actions
330 lines (282 loc) · 8.61 KB
/
CampaignData.php
File metadata and controls
330 lines (282 loc) · 8.61 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
<?php
declare(strict_types=1);
namespace SentDm\Profiles\Campaigns;
use SentDm\Core\Attributes\Optional;
use SentDm\Core\Attributes\Required;
use SentDm\Core\Concerns\SdkModel;
use SentDm\Core\Contracts\BaseModel;
/**
* Campaign data for create or update operation.
*
* @phpstan-import-type SentDmServicesEndpointsCustomerApIv3ContractsRequestsCampaignsCampaignUseCaseDataShape from \SentDm\Profiles\Campaigns\SentDmServicesEndpointsCustomerApIv3ContractsRequestsCampaignsCampaignUseCaseData
*
* @phpstan-type CampaignDataShape = array{
* description: string,
* name: string,
* type: string,
* useCases: list<SentDmServicesEndpointsCustomerApIv3ContractsRequestsCampaignsCampaignUseCaseData|SentDmServicesEndpointsCustomerApIv3ContractsRequestsCampaignsCampaignUseCaseDataShape>,
* helpKeywords?: string|null,
* helpMessage?: string|null,
* messageFlow?: string|null,
* optinKeywords?: string|null,
* optinMessage?: string|null,
* optoutKeywords?: string|null,
* optoutMessage?: string|null,
* privacyPolicyLink?: string|null,
* termsAndConditionsLink?: string|null,
* }
*/
final class CampaignData implements BaseModel
{
/** @use SdkModel<CampaignDataShape> */
use SdkModel;
/**
* Campaign description.
*/
#[Required]
public string $description;
/**
* Campaign name.
*/
#[Required]
public string $name;
/**
* Campaign type (e.g., "KYC", "App").
*/
#[Required]
public string $type;
/**
* List of use cases with sample messages.
*
* @var list<SentDmServicesEndpointsCustomerApIv3ContractsRequestsCampaignsCampaignUseCaseData> $useCases
*/
#[Required(
list: SentDmServicesEndpointsCustomerApIv3ContractsRequestsCampaignsCampaignUseCaseData::class,
)]
public array $useCases;
/**
* Comma-separated keywords that trigger help message (e.g., "HELP, INFO, SUPPORT").
*/
#[Optional(nullable: true)]
public ?string $helpKeywords;
/**
* Message sent when user requests help.
*/
#[Optional(nullable: true)]
public ?string $helpMessage;
/**
* Description of how messages flow in the campaign.
*/
#[Optional(nullable: true)]
public ?string $messageFlow;
/**
* Comma-separated keywords that trigger opt-in (e.g., "YES, START, SUBSCRIBE").
*/
#[Optional(nullable: true)]
public ?string $optinKeywords;
/**
* Message sent when user opts in.
*/
#[Optional(nullable: true)]
public ?string $optinMessage;
/**
* Comma-separated keywords that trigger opt-out (e.g., "STOP, UNSUBSCRIBE, END").
*/
#[Optional(nullable: true)]
public ?string $optoutKeywords;
/**
* Message sent when user opts out.
*/
#[Optional(nullable: true)]
public ?string $optoutMessage;
/**
* URL to privacy policy.
*/
#[Optional(nullable: true)]
public ?string $privacyPolicyLink;
/**
* URL to terms and conditions.
*/
#[Optional(nullable: true)]
public ?string $termsAndConditionsLink;
/**
* `new CampaignData()` is missing required properties by the API.
*
* To enforce required parameters use
* ```
* CampaignData::with(description: ..., name: ..., type: ..., useCases: ...)
* ```
*
* Otherwise ensure the following setters are called
*
* ```
* (new CampaignData)
* ->withDescription(...)
* ->withName(...)
* ->withType(...)
* ->withUseCases(...)
* ```
*/
public function __construct()
{
$this->initialize();
}
/**
* Construct an instance from the required parameters.
*
* You must use named parameters to construct any parameters with a default value.
*
* @param list<SentDmServicesEndpointsCustomerApIv3ContractsRequestsCampaignsCampaignUseCaseData|SentDmServicesEndpointsCustomerApIv3ContractsRequestsCampaignsCampaignUseCaseDataShape> $useCases
*/
public static function with(
string $description,
string $name,
string $type,
array $useCases,
?string $helpKeywords = null,
?string $helpMessage = null,
?string $messageFlow = null,
?string $optinKeywords = null,
?string $optinMessage = null,
?string $optoutKeywords = null,
?string $optoutMessage = null,
?string $privacyPolicyLink = null,
?string $termsAndConditionsLink = null,
): self {
$self = new self;
$self['description'] = $description;
$self['name'] = $name;
$self['type'] = $type;
$self['useCases'] = $useCases;
null !== $helpKeywords && $self['helpKeywords'] = $helpKeywords;
null !== $helpMessage && $self['helpMessage'] = $helpMessage;
null !== $messageFlow && $self['messageFlow'] = $messageFlow;
null !== $optinKeywords && $self['optinKeywords'] = $optinKeywords;
null !== $optinMessage && $self['optinMessage'] = $optinMessage;
null !== $optoutKeywords && $self['optoutKeywords'] = $optoutKeywords;
null !== $optoutMessage && $self['optoutMessage'] = $optoutMessage;
null !== $privacyPolicyLink && $self['privacyPolicyLink'] = $privacyPolicyLink;
null !== $termsAndConditionsLink && $self['termsAndConditionsLink'] = $termsAndConditionsLink;
return $self;
}
/**
* Campaign description.
*/
public function withDescription(string $description): self
{
$self = clone $this;
$self['description'] = $description;
return $self;
}
/**
* Campaign name.
*/
public function withName(string $name): self
{
$self = clone $this;
$self['name'] = $name;
return $self;
}
/**
* Campaign type (e.g., "KYC", "App").
*/
public function withType(string $type): self
{
$self = clone $this;
$self['type'] = $type;
return $self;
}
/**
* List of use cases with sample messages.
*
* @param list<SentDmServicesEndpointsCustomerApIv3ContractsRequestsCampaignsCampaignUseCaseData|SentDmServicesEndpointsCustomerApIv3ContractsRequestsCampaignsCampaignUseCaseDataShape> $useCases
*/
public function withUseCases(array $useCases): self
{
$self = clone $this;
$self['useCases'] = $useCases;
return $self;
}
/**
* Comma-separated keywords that trigger help message (e.g., "HELP, INFO, SUPPORT").
*/
public function withHelpKeywords(?string $helpKeywords): self
{
$self = clone $this;
$self['helpKeywords'] = $helpKeywords;
return $self;
}
/**
* Message sent when user requests help.
*/
public function withHelpMessage(?string $helpMessage): self
{
$self = clone $this;
$self['helpMessage'] = $helpMessage;
return $self;
}
/**
* Description of how messages flow in the campaign.
*/
public function withMessageFlow(?string $messageFlow): self
{
$self = clone $this;
$self['messageFlow'] = $messageFlow;
return $self;
}
/**
* Comma-separated keywords that trigger opt-in (e.g., "YES, START, SUBSCRIBE").
*/
public function withOptinKeywords(?string $optinKeywords): self
{
$self = clone $this;
$self['optinKeywords'] = $optinKeywords;
return $self;
}
/**
* Message sent when user opts in.
*/
public function withOptinMessage(?string $optinMessage): self
{
$self = clone $this;
$self['optinMessage'] = $optinMessage;
return $self;
}
/**
* Comma-separated keywords that trigger opt-out (e.g., "STOP, UNSUBSCRIBE, END").
*/
public function withOptoutKeywords(?string $optoutKeywords): self
{
$self = clone $this;
$self['optoutKeywords'] = $optoutKeywords;
return $self;
}
/**
* Message sent when user opts out.
*/
public function withOptoutMessage(?string $optoutMessage): self
{
$self = clone $this;
$self['optoutMessage'] = $optoutMessage;
return $self;
}
/**
* URL to privacy policy.
*/
public function withPrivacyPolicyLink(?string $privacyPolicyLink): self
{
$self = clone $this;
$self['privacyPolicyLink'] = $privacyPolicyLink;
return $self;
}
/**
* URL to terms and conditions.
*/
public function withTermsAndConditionsLink(
?string $termsAndConditionsLink
): self {
$self = clone $this;
$self['termsAndConditionsLink'] = $termsAndConditionsLink;
return $self;
}
}