GoogleAppsDriveLabelsV2DeltaUpdateLabelRequestUpdateSelectionChoicePropertiesRequest.fromJson constructor
GoogleAppsDriveLabelsV2DeltaUpdateLabelRequestUpdateSelectionChoicePropertiesRequest.fromJson(
- Map json_
Implementation
GoogleAppsDriveLabelsV2DeltaUpdateLabelRequestUpdateSelectionChoicePropertiesRequest.fromJson(
core.Map json_)
: this(
fieldId: json_.containsKey('fieldId')
? json_['fieldId'] as core.String
: null,
id: json_.containsKey('id') ? json_['id'] as core.String : null,
properties: json_.containsKey('properties')
? GoogleAppsDriveLabelsV2FieldSelectionOptionsChoiceProperties
.fromJson(json_['properties']
as core.Map<core.String, core.dynamic>)
: null,
updateMask: json_.containsKey('updateMask')
? json_['updateMask'] as core.String
: null,
);