ResendContactPhoneCodeRequest constructor
ResendContactPhoneCodeRequest({
- Instance? instance,
- Organization? organization,
- String? id,
- SendPhoneVerificationCode? sendCode,
- ReturnPhoneVerificationCode? returnCode,
Implementation
factory ResendContactPhoneCodeRequest({
$1.Instance? instance,
$1.Organization? organization,
$core.String? id,
$5.SendPhoneVerificationCode? sendCode,
$5.ReturnPhoneVerificationCode? returnCode,
}) {
final result = create();
if (instance != null) result.instance = instance;
if (organization != null) result.organization = organization;
if (id != null) result.id = id;
if (sendCode != null) result.sendCode = sendCode;
if (returnCode != null) result.returnCode = returnCode;
return result;
}