Searched refs:dst_dict (Results 1 – 1 of 1) sorted by relevance
296 def _RenderTypeInformation(self, type_, dst_dict): argument297 dst_dict['is_object'] = type_.property_type == model.PropertyType.OBJECT299 dst_dict['choices'] = self._GenerateTypes(type_.choices)302 if len(dst_dict['choices']) > 0:303 dst_dict['choices'][-1]['last'] = True305 dst_dict['link'] = self._GetLink(type_.ref_type)307 dst_dict['array'] = self._GenerateType(type_.item_type)309 dst_dict['enum_values'] = [312 if len(dst_dict['enum_values']) > 0:313 dst_dict['enum_values'][-1]['last'] = True[all …]