GoogleCloudDialogflowCxV3FulfillIntentRequest.fromJson constructor
GoogleCloudDialogflowCxV3FulfillIntentRequest.fromJson(
- Map json_
Implementation
GoogleCloudDialogflowCxV3FulfillIntentRequest.fromJson(core.Map json_)
: this(
match:
json_.containsKey('match')
? GoogleCloudDialogflowCxV3Match.fromJson(
json_['match'] as core.Map<core.String, core.dynamic>,
)
: null,
matchIntentRequest:
json_.containsKey('matchIntentRequest')
? GoogleCloudDialogflowCxV3MatchIntentRequest.fromJson(
json_['matchIntentRequest']
as core.Map<core.String, core.dynamic>,
)
: null,
outputAudioConfig:
json_.containsKey('outputAudioConfig')
? GoogleCloudDialogflowCxV3OutputAudioConfig.fromJson(
json_['outputAudioConfig']
as core.Map<core.String, core.dynamic>,
)
: null,
);