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