GoogleCloudAiplatformV1AddContextArtifactsAndExecutionsRequest.fromJson constructor

GoogleCloudAiplatformV1AddContextArtifactsAndExecutionsRequest.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAiplatformV1AddContextArtifactsAndExecutionsRequest.fromJson(
    core.Map json_)
    : this(
        artifacts: json_.containsKey('artifacts')
            ? (json_['artifacts'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
        executions: json_.containsKey('executions')
            ? (json_['executions'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );