Set-BillingNarrativeType

Prev Next

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

The billing narrative type object to update for an existing entry.

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.)