GoogleCloudDataplexV1UnstructuredDataProfileResult.fromJson constructor
GoogleCloudDataplexV1UnstructuredDataProfileResult.fromJson(
- Map json_
Implementation
GoogleCloudDataplexV1UnstructuredDataProfileResult.fromJson(core.Map json_)
: this(
description: json_['description'] as core.String?,
graphProfile: json_.containsKey('graphProfile')
? GoogleCloudDataplexV1GraphProfile.fromJson(
json_['graphProfile'] as core.Map<core.String, core.dynamic>,
)
: null,
partialFailureMessage: json_['partialFailureMessage'] as core.String?,
);