NowVoiceUIConfiguration structure - iOS

  • Release version: Australia
  • Updated July 14, 2026
  • 1 minute to read
  • Specifies presentation options for the voice agent UI.

    NowVoiceUIConfiguration - init(hidesPostCallTranscript: Bool, shouldBlockTranscriptSharing: Bool)

    Creates a NowVoiceUIConfiguration instance with the specified presentation options.

    Table 1. Parameters
    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.

    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.

    Default: False

    The following code example shows how to create an instance of NowVoiceUIConfiguration.

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