UpdateBillingServiceRequest constructor
- String? orgId,
- 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;
}