toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
  json[r'call_id'] = this.callId;
  json[r'call_session_id'] = this.callSessionId;
  json[r'call_type'] = this.callType;
  json[r'duration'] = this.duration;
  json[r'events'] = this.events;
  json[r'user_id'] = this.userId;
  json[r'user_session_id'] = this.userSessionId;
  return json;
}