@@ -1040,13 +1040,13 @@ def _to_generated(self):
1040
1040
class TeamsPhoneCallDetails :
1041
1041
"""The call details which will be sent to the target.
1042
1042
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
1044
1044
call.
1045
- :paramtype teams_phone_caller_details :
1045
+ :paramtype teams_phone_caller :
1046
1046
~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
1048
1048
the creation of these call details.
1049
- :paramtype teams_phone_source_details :
1049
+ :paramtype teams_phone_source :
1050
1050
~azure.communication.callautomation.models.TeamsPhoneSourceDetails
1051
1051
:keyword session_id: Id to exclusively identify this call session. IVR will use this for their
1052
1052
telemetry/reporting.
@@ -1068,9 +1068,9 @@ class TeamsPhoneCallDetails:
1068
1068
:paramtype suggested_actions: str
1069
1069
"""
1070
1070
1071
- teams_phone_caller_details : Optional ["TeamsPhoneCallerDetails" ]
1071
+ teams_phone_caller : Optional ["TeamsPhoneCallerDetails" ]
1072
1072
"""Gets or sets the caller details."""
1073
- teams_phone_source_details : Optional ["TeamsPhoneSourceDetails" ]
1073
+ teams_phone_source : Optional ["TeamsPhoneSourceDetails" ]
1074
1074
"""Gets or sets the source details."""
1075
1075
session_id : Optional [str ]
1076
1076
"""Gets or sets the session id."""
@@ -1088,17 +1088,17 @@ class TeamsPhoneCallDetails:
1088
1088
"""Gets or sets the suggested actions."""
1089
1089
1090
1090
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 ,
1093
1093
session_id : Optional [str ] = None ,
1094
1094
intent : Optional [str ] = None ,
1095
1095
call_topic : Optional [str ] = None ,
1096
1096
call_context : Optional [str ] = None ,
1097
1097
transcript_url : Optional [str ] = None ,
1098
1098
call_sentiment : Optional [str ] = None ,
1099
1099
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
1102
1102
self .session_id = session_id
1103
1103
self .intent = intent
1104
1104
self .call_topic = call_topic
@@ -1109,8 +1109,8 @@ def __init__(self, *,
1109
1109
1110
1110
def _to_generated (self ):
1111
1111
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 ,
1114
1114
session_id = self .session_id ,
1115
1115
intent = self .intent ,
1116
1116
call_topic = self .call_topic ,
0 commit comments