ResendContactEmailCodeRequest constructor
ResendContactEmailCodeRequest({
- Instance? instance,
- Organization? organization,
- String? id,
- SendEmailVerificationCode? sendCode,
- ReturnEmailVerificationCode? returnCode,
Implementation
factory ResendContactEmailCodeRequest({
$1.Instance? instance,
$1.Organization? organization,
$core.String? id,
$5.SendEmailVerificationCode? sendCode,
$5.ReturnEmailVerificationCode? 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;
}