Skip to content

Commit

Permalink
Update broadworks_entities copy.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordan-Prescott committed Nov 5, 2023
1 parent f7d22ab commit eb2c493
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions odin_api/store/broadworks_entities copy.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,29 +331,29 @@ def __init__(self,
self.group = group
self.agents: List[User] = []

self.enable_video = False
self.allow_caller_to_dial_escape_digit = False
self.reset_call_statistics_upon_entry_in_queue = True
self.allow_agent_logoff = True
self.allow_call_waiting_for_agents = True
self.play_ringing_when_offering_call = True
self.external_preferred_audio_codec = None
self.internal_preferred_audio_codec = None
self.enable_reporting = False
self.allow_calls_to_agents_in_wrap_up = True
self.override_agent_wrap_up_time = False
self.enable_automatic_state_change_for_agents = False
self.force_delivery_of_calls = False
self.type = None
self.service_user_id_prefix = None
self.calling_line_id_last_name = None
self.calling_line_id_first_name = None
self.password = None
self.policy = None
self.routing_type = None
self.queue_length = None
self.escape_digit = None
self.service_user_id = None
self.enable_video = enable_video
self.allow_caller_to_dial_escape_digit = allow_caller_to_dial_escape_digit
self.reset_call_statistics_upon_entry_in_queue = reset_call_statistics_upon_entry_in_queue
self.allow_agent_logoff = allow_agent_logoff
self.allow_call_waiting_for_agents = allow_call_waiting_for_agents
self.play_ringing_when_offering_call = play_ringing_when_offering_call
self.external_preferred_audio_codec = external_preferred_audio_codec
self.internal_preferred_audio_codec = internal_preferred_audio_codec
self.enable_reporting = enable_reporting
self.allow_calls_to_agents_in_wrap_up = allow_calls_to_agents_in_wrap_up
self.override_agent_wrap_up_time = override_agent_wrap_up_time
self.enable_automatic_state_change_for_agents = enable_automatic_state_change_for_agents
self.force_delivery_of_calls = force_delivery_of_calls
self.type = type
self.service_user_id_prefix = service_user_id_prefix
self.calling_line_id_last_name = calling_line_id_last_name
self.calling_line_id_first_name = calling_line_id_first_name
self.password = password
self.policy = policy
self.routing_type = routing_type
self.queue_length = queue_length
self.escape_digit = escape_digit
self.service_user_id = service_user_id

self.service_provider_id = group.sp_or_ent.id

0 comments on commit eb2c493

Please sign in to comment.