toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
    json[r'enabled'] = this.enabled;
  if (this.joinAheadTimeSeconds != null) {
    json[r'join_ahead_time_seconds'] = this.joinAheadTimeSeconds;
  } else {
    json[r'join_ahead_time_seconds'] = null;
  }
  return json;
}