Input$ErpIntegrationUpdateInput constructor
Input$ErpIntegrationUpdateInput({
- Input$TargetACIInput? target,
- String? url,
- String? username,
- String? password,
- Enum$ErpIntegrationCycleEnum? recurrence,
- Enum$ErpVendorEnum? vendor,
- bool? active,
- 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,
});