GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecAgentConfigSource.fromJson constructor
GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecAgentConfigSource.fromJson(
- Map json_
Implementation
GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecAgentConfigSource.fromJson(
core.Map json_,
) : this(
adkConfig: json_.containsKey('adkConfig')
? GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecAgentConfigSourceAdkConfig.fromJson(
json_['adkConfig'] as core.Map<core.String, core.dynamic>,
)
: null,
inlineSource: json_.containsKey('inlineSource')
? GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecInlineSource.fromJson(
json_['inlineSource'] as core.Map<core.String, core.dynamic>,
)
: null,
);