Skip to content

Fixed tests #131

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 37 additions & 1 deletion tb_rest_client/models/models_ce/entity_filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,50 @@ class EntityFilter(object):
and the value is json key in definition.
"""
swagger_types = {
'type': 'str',
'resolve_multiple': 'bool',
'entity_type': 'str'
}

attribute_map = {
'type': 'type',
'resolve_multiple': 'resolveMultiple',
'entity_type': 'entityType'
}

def __init__(self): # noqa: E501
def __init__(self, type=None, resolve_multiple=None, entity_type=None): # noqa: E501
"""EntityFilter - a model defined in Swagger""" # noqa: E501
self.discriminator = None
self._type = None
self._resolve_multiple = None
self._entity_type = None
self.type = type
self.resolve_multiple = resolve_multiple
self.entity_type = entity_type

@property
def type(self):
return self._type

@type.setter
def type(self, type):
self._type = type

@property
def resolve_multiple(self):
return self._resolve_multiple

@resolve_multiple.setter
def resolve_multiple(self, resolve_multiple):
self._resolve_multiple = resolve_multiple

@property
def entity_type(self):
return self._entity_type

@entity_type.setter
def entity_type(self, entity_type):
self._entity_type = entity_type

def to_dict(self):
"""Returns the model properties as a dict"""
Expand Down
3 changes: 0 additions & 3 deletions tb_rest_client/models/models_pe/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,6 @@
from .response_entity import ResponseEntity
from .page_data_event import PageDataEvent
from .entity_list_filter import EntityListFilter
from .deferred_result_response_entity import DeferredResultResponseEntity
from .entity_type_filter import EntityTypeFilter
from .custom_time_schedule import CustomTimeSchedule
from .tenant_solution_template_instructions import TenantSolutionTemplateInstructions
Expand All @@ -185,7 +184,6 @@
from .rpc import Rpc
from .group_permission_info import GroupPermissionInfo
from .rpc_id import RpcId
from .page_data_alarm_data import PageDataAlarmData
from .default_rule_chain_create_request import DefaultRuleChainCreateRequest
from .transport_payload_type_configuration import TransportPayloadTypeConfiguration
from .entity_group import EntityGroup
Expand Down Expand Up @@ -218,7 +216,6 @@
from .entity_filter import EntityFilter
from .debug_integration_event_filter import DebugIntegrationEventFilter
from .entity_view_type_filter import EntityViewTypeFilter
from .page_data_entity_data import PageDataEntityData
from .dynamic_valueboolean import DynamicValueboolean
from .tenant_profile_configuration import TenantProfileConfiguration
from .customer import Customer
Expand Down
136 changes: 0 additions & 136 deletions tb_rest_client/models/models_pe/deferred_result_response_entity.py

This file was deleted.

Loading