GoogleCloudDataplexV1UpdateGlossaryTermRequest.fromJson constructor
GoogleCloudDataplexV1UpdateGlossaryTermRequest.fromJson(
- Map json_
Implementation
GoogleCloudDataplexV1UpdateGlossaryTermRequest.fromJson(core.Map json_)
: this(
term: json_.containsKey('term')
? GoogleCloudDataplexV1GlossaryTerm.fromJson(
json_['term'] as core.Map<core.String, core.dynamic>,
)
: null,
updateMask: json_['updateMask'] as core.String?,
);