GoogleCloudContactcenterinsightsV1GenerativeInsightsChartConversationMessageSystemMessage.fromJson constructor
GoogleCloudContactcenterinsightsV1GenerativeInsightsChartConversationMessageSystemMessage.fromJson(
- Map json_
Implementation
GoogleCloudContactcenterinsightsV1GenerativeInsightsChartConversationMessageSystemMessage.fromJson(
core.Map json_,
) : this(
chartSpec: json_.containsKey('chartSpec')
? json_['chartSpec'] as core.Map<core.String, core.dynamic>
: null,
generatedSqlQuery: json_['generatedSqlQuery'] as core.String?,
textOutput: json_.containsKey('textOutput')
? GoogleCloudContactcenterinsightsV1GenerativeInsightsChartConversationMessageSystemMessageTextOutput.fromJson(
json_['textOutput'] as core.Map<core.String, core.dynamic>,
)
: null,
);