GoogleCloudAiplatformV1IndexDatapointRestriction.fromJson constructor
GoogleCloudAiplatformV1IndexDatapointRestriction.fromJson(
- Map json_
Implementation
GoogleCloudAiplatformV1IndexDatapointRestriction.fromJson(core.Map json_)
: this(
allowList: json_.containsKey('allowList')
? (json_['allowList'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
denyList: json_.containsKey('denyList')
? (json_['denyList'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
namespace: json_.containsKey('namespace')
? json_['namespace'] as core.String
: null,
);