toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final associatedServingConfigIds = this.associatedServingConfigIds;
  final displayName = this.displayName;
  final name = this.name;
  final rule = this.rule;
  final searchSolutionUseCase = this.searchSolutionUseCase;
  final solutionTypes = this.solutionTypes;
  return {
    'associatedServingConfigIds': ?associatedServingConfigIds,
    'displayName': ?displayName,
    'name': ?name,
    'rule': ?rule,
    'searchSolutionUseCase': ?searchSolutionUseCase,
    'solutionTypes': ?solutionTypes,
  };
}