GoogleCloudAiplatformV1MemoryBankCustomizationConfigMemoryTopic.fromJson constructor

GoogleCloudAiplatformV1MemoryBankCustomizationConfigMemoryTopic.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAiplatformV1MemoryBankCustomizationConfigMemoryTopic.fromJson(
  core.Map json_,
) : this(
      customMemoryTopic: json_.containsKey('customMemoryTopic')
          ? GoogleCloudAiplatformV1MemoryBankCustomizationConfigMemoryTopicCustomMemoryTopic.fromJson(
              json_['customMemoryTopic']
                  as core.Map<core.String, core.dynamic>,
            )
          : null,
      managedMemoryTopic: json_.containsKey('managedMemoryTopic')
          ? GoogleCloudAiplatformV1MemoryBankCustomizationConfigMemoryTopicManagedMemoryTopic.fromJson(
              json_['managedMemoryTopic']
                  as core.Map<core.String, core.dynamic>,
            )
          : null,
    );