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