Input$OutboundInput constructor
Input$OutboundInput({
- String? title,
- String? description,
- String? icon,
- Input$PictureInput? picture,
- Enum$TriggerEnum? trigger,
- Enum$ChannelEnum? channel,
- String? smart,
- String? tracking,
- Enum$OutboundEnum? status,
- double? sent,
- double? clicked,
- Input$OutboundContentInput? content,
- String? audience,
- Input$TargetACIInput? target,
- DateTime? executedAt,
Implementation
factory Input$OutboundInput({
String? title,
String? description,
String? icon,
Input$PictureInput? picture,
Enum$TriggerEnum? trigger,
Enum$ChannelEnum? channel,
String? smart,
String? tracking,
Enum$OutboundEnum? status,
double? sent,
double? clicked,
Input$OutboundContentInput? content,
String? audience,
Input$TargetACIInput? target,
DateTime? executedAt,
}) =>
Input$OutboundInput._({
if (title != null) r'title': title,
if (description != null) r'description': description,
if (icon != null) r'icon': icon,
if (picture != null) r'picture': picture,
if (trigger != null) r'trigger': trigger,
if (channel != null) r'channel': channel,
if (smart != null) r'smart': smart,
if (tracking != null) r'tracking': tracking,
if (status != null) r'status': status,
if (sent != null) r'sent': sent,
if (clicked != null) r'clicked': clicked,
if (content != null) r'content': content,
if (audience != null) r'audience': audience,
if (target != null) r'target': target,
if (executedAt != null) r'executedAt': executedAt,
});