---
sourceDocument: Australia API Reference
sourceDocumentLink: https://servicenow-prod.fluidtopics.net/r/api-reference

 Release :

    - australia

ft:locale :

    - en-US

ft:publication_title :

    - Australia API Reference

ft:clusterId :

    - crapiref

bundleId :

    - crapiref

workflow :

    - Creator


---

# NowVoiceUIConfiguration structure - iOS

# NowVoiceUIConfiguration structure - iOS {#ariaid-title1}

Release version: Australia  
Updated July 14, 2026  
![](https://www.servicenow.com/docs/portal-asset/ico-clock) 1 minute to read  
Specifies presentation options for the voice agent UI.

## NowVoiceUIConfiguration - init(hidesPostCallTranscript: Bool, shouldBlockTranscriptSharing: Bool) {#ariaid-title2}

Creates a NowVoiceUIConfiguration instance with the specified presentation options.
{#NVoiceUIConfig-init_B_B__table_pft_qzv_nvo4__entry__3}

| Name | Type | Description |
|-|-|-|
| hidesPostCallTranscript | Boolean | Optional. Flag that indicates whether the post-call transcript summary screen is displayed or hidden when the session ends. Valid values: * true: The post-call transcript summary screen is hidden. * false: The post-call transcript summary screen is displayed. {#NVoiceUIConfig-init_B_B__ul_xj3_3b3_yjc} Default: False |
| shouldBlockTranscriptSharing | Boolean | Optional. Flag that indicates whether the Share button is displayed or hidden on the transcript screen. Valid values: * true: The share button is hidden. * false: The share button is displayed. {#NVoiceUIConfig-init_B_B__ul_ppl_rb3_yjc} Default: False |
[Table 1. Parameters]

{#NVoiceUIConfig-init_B_B__table_pft_qzv_nvo4}  
The following code example shows how to create an instance of NowVoiceUIConfiguration.

    let uiConfiguration = NowVoiceUIConfiguration(
        hidesPostCallTranscript: true,
        shouldBlockTranscriptSharing: true
    )


