GoogleCloudDataplexV1DataProfileResultProfileField.fromJson constructor
GoogleCloudDataplexV1DataProfileResultProfileField.fromJson(
- Map json_
Implementation
GoogleCloudDataplexV1DataProfileResultProfileField.fromJson(core.Map json_)
: this(
mode: json_['mode'] as core.String?,
name: json_['name'] as core.String?,
profile: json_.containsKey('profile')
? GoogleCloudDataplexV1DataProfileResultProfileFieldProfileInfo
.fromJson(
json_['profile'] as core.Map<core.String, core.dynamic>)
: null,
type: json_['type'] as core.String?,
);