GoogleCloudContactcenterinsightsV1GenerateConversationSignedAudioResponse.fromJson constructor

GoogleCloudContactcenterinsightsV1GenerateConversationSignedAudioResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudContactcenterinsightsV1GenerateConversationSignedAudioResponse.fromJson(
  core.Map json_,
) : this(
      signedAudioUris: json_.containsKey('signedAudioUris')
          ? GoogleCloudContactcenterinsightsV1SignedAudioUris.fromJson(
              json_['signedAudioUris'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );