toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> data = new Map<String, dynamic>();
  data['apiVersion'] = this.apiVersion;
  data['traceId'] = this.traceId;
  if (this.status != null) {
    data['status'] = this.status?.toJson();
  }
  if (this.tts != null) {
    data['tts'] = this.tts?.toJson();
  }
  return data;
}