Input$CorporateOutboundNotificationInput constructor

Input$CorporateOutboundNotificationInput({
  1. String? title,
  2. String? description,
  3. Input$PictureInput? picture,
  4. String? outbound,
  5. Input$TargetACIInput? target,
})

Implementation

factory Input$CorporateOutboundNotificationInput({
  String? title,
  String? description,
  Input$PictureInput? picture,
  String? outbound,
  Input$TargetACIInput? target,
}) =>
    Input$CorporateOutboundNotificationInput._({
      if (title != null) r'title': title,
      if (description != null) r'description': description,
      if (picture != null) r'picture': picture,
      if (outbound != null) r'outbound': outbound,
      if (target != null) r'target': target,
    });