-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPasted--services-debtCampaignStrategy-ts-export-interface-DebtCampaignTemplate-archetype-string--1734031866808.txt
143 lines (138 loc) · 4.46 KB
/
Pasted--services-debtCampaignStrategy-ts-export-interface-DebtCampaignTemplate-archetype-string--1734031866808.txt
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
// services/debtCampaignStrategy.ts
export interface DebtCampaignTemplate {
archetype: string;
primaryMessage: string;
supportingPoints: string[];
channels: string[];
timing: string;
incentives: string[];
communicationStyle: string[];
callToAction: string;
followUpStrategy: string;
}
export const DEBT_CAMPAIGN_TEMPLATES: Record<string, DebtCampaignTemplate> = {
Autonomous: {
archetype: "Autonomous",
primaryMessage: "Take Control of Your Financial Future with Data-Driven Solutions",
supportingPoints: [
"Personalized payment calculator showing exact impact on credit score",
"Self-managed restructuring options with clear terms",
"Direct access to account analytics and progress tracking",
"Transparent fee structure and interest calculations"
],
channels: [
"Secure online portal",
"Email with detailed PDF reports",
"Interactive financial dashboard",
"Mobile app with self-service tools"
],
timing: "Weekly data-driven updates with monthly progress reports",
incentives: [
"Early settlement discount calculator",
"Credit score improvement projections",
"Fee reduction for consistent payments",
"Self-service reward points"
],
communicationStyle: [
"Factual and data-focused",
"Clear performance metrics",
"Professional and direct",
"Emphasis on control and choice"
],
callToAction: "Review Your Custom Payment Solutions",
followUpStrategy: "Automated progress reports and milestone notifications"
},
Isolated: {
archetype: "Isolated",
primaryMessage: "Confidential Financial Solutions on Your Terms",
supportingPoints: [
"Private online resolution options",
"Anonymous financial counseling available",
"Secure, non-intrusive payment arrangements",
"Confidential account review process"
],
channels: [
"Private online portal",
"Secure messaging system",
"Anonymous chat support",
"Encrypted document sharing"
],
timing: "User-initiated interactions with scheduled private reviews",
incentives: [
"Private settlement options",
"Discrete payment arrangements",
"Confidential debt consolidation",
"Personal progress tracking"
],
communicationStyle: [
"Respectful of privacy",
"Non-intrusive communication",
"Written confirmation only when requested",
"Focus on security and confidentiality"
],
callToAction: "Explore Private Resolution Options",
followUpStrategy: "Scheduled secure updates based on user preferences"
},
Avoidant: {
archetype: "Avoidant",
primaryMessage: "Simple, Stress-Free Solutions for a Fresh Start",
supportingPoints: [
"Easy-to-follow payment plans",
"No-pressure account review",
"Simplified documentation process",
"Positive financial guidance"
],
channels: [
"Friendly SMS reminders",
"Simple email updates",
"Easy-to-use mobile app",
"Supportive chat system"
],
timing: "Gentle reminders with positive reinforcement",
incentives: [
"Small wins celebration",
"Gradual payment increases",
"Early resolution bonuses",
"Stress-free payment options"
],
communicationStyle: [
"Encouraging and supportive",
"Simple, clear language",
"Focus on positive progress",
"Non-judgmental approach"
],
callToAction: "Take Your First Easy Step",
followUpStrategy: "Regular positive reinforcement and achievement celebrations"
},
Impulsive: {
archetype: "Impulsive",
primaryMessage: "Act Now for Exclusive Debt Resolution Benefits",
supportingPoints: [
"Limited-time settlement offers",
"Immediate account resolution options",
"Quick-start payment programs",
"Instant approval process"
],
channels: [
"Push notifications",
"SMS alerts",
"Interactive mobile app",
"Real-time chat support"
],
timing: "Time-sensitive offers with immediate benefits",
incentives: [
"Instant settlement discounts",
"Same-day payment rewards",
"Quick resolution bonuses",
"Immediate fee waivers"
],
communicationStyle: [
"Urgent and dynamic",
"Emphasis on immediate benefits",
"Clear deadlines",
"Focus on quick wins"
],
callToAction: "Claim Your Special Offer Now",
followUpStrategy: "Regular flash offers and immediate reward notifications"
}
};