UpdateKycRequest constructor
UpdateKycRequest({})
Implementation
factory UpdateKycRequest({
$core.String? country,
$core.String? address,
$core.String? phoneNumber,
$core.String? businessInfo,
$core.String? license,
$core.String? kycId,
$core.String? kycUrl,
}) {
final $result = create();
if (country != null) {
$result.country = country;
}
if (address != null) {
$result.address = address;
}
if (phoneNumber != null) {
$result.phoneNumber = phoneNumber;
}
if (businessInfo != null) {
$result.businessInfo = businessInfo;
}
if (license != null) {
$result.license = license;
}
if (kycId != null) {
$result.kycId = kycId;
}
if (kycUrl != null) {
$result.kycUrl = kycUrl;
}
return $result;
}