Skip to content

Commit aaed2ef

Browse files
committed
updating the apiview comments
1 parent 5b0afd2 commit aaed2ef

File tree

1 file changed

+12
-12
lines changed
  • sdk/communication/azure-communication-callautomation/azure/communication/callautomation

1 file changed

+12
-12
lines changed

sdk/communication/azure-communication-callautomation/azure/communication/callautomation/_models.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1040,13 +1040,13 @@ def _to_generated(self):
10401040
class TeamsPhoneCallDetails:
10411041
"""The call details which will be sent to the target.
10421042
1043-
:keyword teams_phone_caller_details: Container for details relating to the original caller of the
1043+
:keyword teams_phone_caller: Container for details relating to the original caller of the
10441044
call.
1045-
:paramtype teams_phone_caller_details:
1045+
:paramtype teams_phone_caller:
10461046
~azure.communication.callautomation.models.TeamsPhoneCallerDetails
1047-
:keyword teams_phone_source_details: Container for details relating to the entity responsible for
1047+
:keyword teams_phone_source: Container for details relating to the entity responsible for
10481048
the creation of these call details.
1049-
:paramtype teams_phone_source_details:
1049+
:paramtype teams_phone_source:
10501050
~azure.communication.callautomation.models.TeamsPhoneSourceDetails
10511051
:keyword session_id: Id to exclusively identify this call session. IVR will use this for their
10521052
telemetry/reporting.
@@ -1068,9 +1068,9 @@ class TeamsPhoneCallDetails:
10681068
:paramtype suggested_actions: str
10691069
"""
10701070

1071-
teams_phone_caller_details: Optional["TeamsPhoneCallerDetails"]
1071+
teams_phone_caller: Optional["TeamsPhoneCallerDetails"]
10721072
"""Gets or sets the caller details."""
1073-
teams_phone_source_details: Optional["TeamsPhoneSourceDetails"]
1073+
teams_phone_source: Optional["TeamsPhoneSourceDetails"]
10741074
"""Gets or sets the source details."""
10751075
session_id: Optional[str]
10761076
"""Gets or sets the session id."""
@@ -1088,17 +1088,17 @@ class TeamsPhoneCallDetails:
10881088
"""Gets or sets the suggested actions."""
10891089

10901090
def __init__(self, *,
1091-
teams_phone_caller_details: Optional["TeamsPhoneCallerDetails"] = None,
1092-
teams_phone_source_details: Optional["TeamsPhoneSourceDetails"] = None,
1091+
teams_phone_caller: Optional["TeamsPhoneCallerDetails"] = None,
1092+
teams_phone_source: Optional["TeamsPhoneSourceDetails"] = None,
10931093
session_id: Optional[str] = None,
10941094
intent: Optional[str] = None,
10951095
call_topic: Optional[str] = None,
10961096
call_context: Optional[str] = None,
10971097
transcript_url: Optional[str] = None,
10981098
call_sentiment: Optional[str] = None,
10991099
suggested_actions: Optional[str] = None):
1100-
self.teams_phone_caller_details = teams_phone_caller_details
1101-
self.teams_phone_source_details = teams_phone_source_details
1100+
self.teams_phone_caller = teams_phone_caller
1101+
self.teams_phone_source = teams_phone_source
11021102
self.session_id = session_id
11031103
self.intent = intent
11041104
self.call_topic = call_topic
@@ -1109,8 +1109,8 @@ def __init__(self, *,
11091109

11101110
def _to_generated(self):
11111111
return TeamsPhoneCallDetailsInternal(
1112-
teams_phone_caller_details=self.teams_phone_caller_details,
1113-
teams_phone_source_details=self.teams_phone_source_details,
1112+
teams_phone_caller_details=self.teams_phone_caller,
1113+
teams_phone_source_details=self.teams_phone_source,
11141114
session_id=self.session_id,
11151115
intent=self.intent,
11161116
call_topic=self.call_topic,

0 commit comments

Comments
 (0)