GoogleCloudDataplexV1UpdateGlossaryCategoryRequest.fromJson constructor

GoogleCloudDataplexV1UpdateGlossaryCategoryRequest.fromJson(
  1. 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?,
    );