GoogleCloudAiplatformV1EntityIdSelector.fromJson constructor

GoogleCloudAiplatformV1EntityIdSelector.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAiplatformV1EntityIdSelector.fromJson(core.Map json_)
    : this(
        csvSource: json_.containsKey('csvSource')
            ? GoogleCloudAiplatformV1CsvSource.fromJson(
                json_['csvSource'] as core.Map<core.String, core.dynamic>)
            : null,
        entityIdField: json_.containsKey('entityIdField')
            ? json_['entityIdField'] as core.String
            : null,
      );