GoogleCloudContentwarehouseV1LockDocumentRequest.fromJson constructor
GoogleCloudContentwarehouseV1LockDocumentRequest.fromJson(
- Map json_
Implementation
GoogleCloudContentwarehouseV1LockDocumentRequest.fromJson(core.Map json_)
: this(
collectionId: json_.containsKey('collectionId')
? json_['collectionId'] as core.String
: null,
lockingUser: json_.containsKey('lockingUser')
? GoogleCloudContentwarehouseV1UserInfo.fromJson(
json_['lockingUser'] as core.Map<core.String, core.dynamic>)
: null,
);