toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final conversationProfile = this.conversationProfile;
final conversationStage = this.conversationStage;
final endTime = this.endTime;
final ingestedContextReferences = this.ingestedContextReferences;
final lifecycleState = this.lifecycleState;
final name = this.name;
final phoneNumber = this.phoneNumber;
final startTime = this.startTime;
final telephonyConnectionInfo = this.telephonyConnectionInfo;
return {
'conversationProfile': ?conversationProfile,
'conversationStage': ?conversationStage,
'endTime': ?endTime,
'ingestedContextReferences': ?ingestedContextReferences,
'lifecycleState': ?lifecycleState,
'name': ?name,
'phoneNumber': ?phoneNumber,
'startTime': ?startTime,
'telephonyConnectionInfo': ?telephonyConnectionInfo,
};
}