Input$ErpIntegrationUpdateInput constructor

Input$ErpIntegrationUpdateInput({
  1. Input$TargetACIInput? target,
  2. String? url,
  3. String? username,
  4. String? password,
  5. Enum$ErpIntegrationCycleEnum? recurrence,
  6. Enum$ErpVendorEnum? vendor,
  7. bool? active,
  8. required String id,
})

Implementation

factory Input$ErpIntegrationUpdateInput({
  Input$TargetACIInput? target,
  String? url,
  String? username,
  String? password,
  Enum$ErpIntegrationCycleEnum? recurrence,
  Enum$ErpVendorEnum? vendor,
  bool? active,
  required String id,
}) =>
    Input$ErpIntegrationUpdateInput._({
      if (target != null) r'target': target,
      if (url != null) r'url': url,
      if (username != null) r'username': username,
      if (password != null) r'password': password,
      if (recurrence != null) r'recurrence': recurrence,
      if (vendor != null) r'vendor': vendor,
      if (active != null) r'active': active,
      r'id': id,
    });