GoogleCloudDataplexV1DataProfileResult.fromJson constructor
GoogleCloudDataplexV1DataProfileResult.fromJson(
- Map json_
Implementation
GoogleCloudDataplexV1DataProfileResult.fromJson(core.Map json_)
: this(
postScanActionsResult:
json_.containsKey('postScanActionsResult')
? GoogleCloudDataplexV1DataProfileResultPostScanActionsResult.fromJson(
json_['postScanActionsResult']
as core.Map<core.String, core.dynamic>,
)
: null,
profile:
json_.containsKey('profile')
? GoogleCloudDataplexV1DataProfileResultProfile.fromJson(
json_['profile'] as core.Map<core.String, core.dynamic>,
)
: null,
rowCount: json_['rowCount'] as core.String?,
scannedData:
json_.containsKey('scannedData')
? GoogleCloudDataplexV1ScannedData.fromJson(
json_['scannedData'] as core.Map<core.String, core.dynamic>,
)
: null,
);