Input$LinkAccountWithLoginInput constructor
Input$LinkAccountWithLoginInput({
- required Input$TargetACIInput target,
- String? password,
- required String reference,
- String? login,
- Input$IPhoneInput? phone,
- Enum$UserEventsSourceEnum? source,
Implementation
factory Input$LinkAccountWithLoginInput({
required Input$TargetACIInput target,
String? password,
required String reference,
String? login,
Input$IPhoneInput? phone,
Enum$UserEventsSourceEnum? source,
}) =>
Input$LinkAccountWithLoginInput._({
r'target': target,
if (password != null) r'password': password,
r'reference': reference,
if (login != null) r'login': login,
if (phone != null) r'phone': phone,
if (source != null) r'source': source,
});