UpdateBillingServiceRequest constructor

UpdateBillingServiceRequest({
  1. String? orgId,
  2. BillingAddress? billingAddress,
})

Implementation

factory UpdateBillingServiceRequest({
  $core.String? orgId,
  BillingAddress? billingAddress,
}) {
  final $result = create();
  if (orgId != null) {
    $result.orgId = orgId;
  }
  if (billingAddress != null) {
    $result.billingAddress = billingAddress;
  }
  return $result;
}