SendPaymentRequiredEmailRequest constructor
Implementation
factory SendPaymentRequiredEmailRequest({
$core.String? customerOrgId,
$core.String? billingOwnerOrgId,
}) {
final $result = create();
if (customerOrgId != null) {
$result.customerOrgId = customerOrgId;
}
if (billingOwnerOrgId != null) {
$result.billingOwnerOrgId = billingOwnerOrgId;
}
return $result;
}