SendPaymentRequiredEmailRequest constructor

SendPaymentRequiredEmailRequest({
  1. String? customerOrgId,
  2. String? billingOwnerOrgId,
})

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;
}