Input$OutboundInput constructor

Input$OutboundInput({
  1. String? title,
  2. String? description,
  3. String? icon,
  4. Input$PictureInput? picture,
  5. Enum$TriggerEnum? trigger,
  6. Enum$ChannelEnum? channel,
  7. String? smart,
  8. String? tracking,
  9. Enum$OutboundEnum? status,
  10. double? sent,
  11. double? clicked,
  12. Input$OutboundContentInput? content,
  13. String? audience,
  14. Input$TargetACIInput? target,
  15. 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,
    });