Skip to content
Snippets Groups Projects
Select Git revision
  • daf084e6ae0611bfc2ba12b0e5d0c0eca48fb366
  • stable default protected
  • MA_Pape_2018
  • MA_2018_Lopatin
  • feature/mesh_viewer
  • feature/#468_access_isosurface_scalar
  • feature/#459_default_primitives
  • master protected
  • feature/#470_Create_a_color_lookup_table
  • feature/#473_resize_companion_window
  • feature/#462_do_not_use_arb_extensions
  • feature/#495_Provide_data_for_larger_isosurfaces
  • feature/#323_default_image
  • feature/#480_Create_a_smaller_test_mesh_for_combustion_demo
  • feature/#236_Get_Integration_tests_running_on_CI
  • feature/#447_Copy_standard_assets_to_build_folder
  • 447-copy-standard-assets-to-build-folder-and-remove-resource-path
  • feature/#445_mesh_render_settings_component
  • feature/#251_Make_sure_tests_cpp_is_compiled_once
  • feature/#455_Remove_navigation_and_improve_interaction_for_combustion_demo
  • feature/446_strange_txt_files
  • v18.06.0
  • v18.05.0
  • #251_bad
  • #251_good
  • v18.03.0
  • v18.02.0
  • v18.01.0
  • v17.12.0
  • v17.11.0
  • v17.10.0
  • v17.09.0
  • v17.07.0
33 results

menu_helper.hpp

Blame
  • arbor_cell_properties.py 2.39 KiB
    # coding: utf-8
    
    from __future__ import absolute_import
    from datetime import date, datetime  # noqa: F401
    
    from typing import List, Dict  # noqa: F401
    
    from access_node.models.base_model_ import Model
    from access_node import util
    
    
    class ArborCellProperties(Model):
        """NOTE: This class is auto generated by the swagger code generator program.
    
        Do not edit the class manually.
        """
    
        def __init__(self, neuron_id: int=None, properties: object=None):  # noqa: E501
            """ArborCellProperties - a model defined in Swagger
    
            :param neuron_id: The neuron_id of this ArborCellProperties.  # noqa: E501
            :type neuron_id: int
            :param properties: The properties of this ArborCellProperties.  # noqa: E501
            :type properties: object
            """
            self.swagger_types = {
                'neuron_id': int,
                'properties': object
            }
    
            self.attribute_map = {
                'neuron_id': 'neuron_id',
                'properties': 'properties'
            }
    
            self._neuron_id = neuron_id
            self._properties = properties
    
        @classmethod
        def from_dict(cls, dikt) -> 'ArborCellProperties':
            """Returns the dict as a model
    
            :param dikt: A dict.
            :type: dict
            :return: The ArborCellProperties of this ArborCellProperties.  # noqa: E501
            :rtype: ArborCellProperties
            """
            return util.deserialize_model(dikt, cls)
    
        @property
        def neuron_id(self) -> int:
            """Gets the neuron_id of this ArborCellProperties.
    
    
            :return: The neuron_id of this ArborCellProperties.
            :rtype: int
            """
            return self._neuron_id
    
        @neuron_id.setter
        def neuron_id(self, neuron_id: int):
            """Sets the neuron_id of this ArborCellProperties.
    
    
            :param neuron_id: The neuron_id of this ArborCellProperties.
            :type neuron_id: int
            """
    
            self._neuron_id = neuron_id
    
        @property
        def properties(self) -> object:
            """Gets the properties of this ArborCellProperties.
    
    
            :return: The properties of this ArborCellProperties.
            :rtype: object
            """
            return self._properties
    
        @properties.setter
        def properties(self, properties: object):
            """Sets the properties of this ArborCellProperties.
    
    
            :param properties: The properties of this ArborCellProperties.
            :type properties: object
            """
    
            self._properties = properties