Set-BillingNarrativeType
- 1 Minute to read
- Print
- DarkLight
- PDF
Set-BillingNarrativeType
- 1 Minute to read
- Print
- DarkLight
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Summary
Updates an existing billing narrative type.
Set-BillingNarrativeType
-Entry
Returns a billing narrative type object.
Parameters
Parameter | Type | Required? | Notes |
---|---|---|---|
Entry | Billing Narrative Type Object | Yes |
Examples
Update an existing billing narrative type
# Retrieve an existing billing narrative type using the Get-BillingNarrativeType cmdlet
$billingNarrativeType = Get-BillingNarrativeType -Id 11
# Change some properties
$billingNarrativeType.Text = "Process and load data into review database."
# Update the billing type using the Set-BillingNarrativeType cmdlet
$updatedBillingNarrativeType = Set-BillingNarrativeType $billingNarrativeType
# Output a message to the execution log
Write-Output "Updated billing narrative type $($updatedBillingNarrativeType.BillingNarrativeTypeId) ($($updatedBillingNarrativeType.Text))"
Results of executing the script:
Updated billing narrative type 11 (Process and load data into review database.)