GoogleCloudContentwarehouseV1DocumentLink.fromJson constructor
GoogleCloudContentwarehouseV1DocumentLink.fromJson(
- Map json_
Implementation
GoogleCloudContentwarehouseV1DocumentLink.fromJson(core.Map json_)
: this(
createTime: json_['createTime'] as core.String?,
description: json_['description'] as core.String?,
name: json_['name'] as core.String?,
sourceDocumentReference: json_.containsKey('sourceDocumentReference')
? GoogleCloudContentwarehouseV1DocumentReference.fromJson(
json_['sourceDocumentReference']
as core.Map<core.String, core.dynamic>)
: null,
state: json_['state'] as core.String?,
targetDocumentReference: json_.containsKey('targetDocumentReference')
? GoogleCloudContentwarehouseV1DocumentReference.fromJson(
json_['targetDocumentReference']
as core.Map<core.String, core.dynamic>)
: null,
updateTime: json_['updateTime'] as core.String?,
);