toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final customRankingInfo = this.customRankingInfo;
  final disableKeywordMatch = this.disableKeywordMatch;
  final diversificationLevel = this.diversificationLevel;
  final enableBroadening = this.enableBroadening;
  final histogramQueries = this.histogramQueries;
  final jobQuery = this.jobQuery;
  final jobView = this.jobView;
  final keywordMatchMode = this.keywordMatchMode;
  final maxPageSize = this.maxPageSize;
  final offset = this.offset;
  final orderBy = this.orderBy;
  final pageToken = this.pageToken;
  final relevanceThreshold = this.relevanceThreshold;
  final requestMetadata = this.requestMetadata;
  final searchMode = this.searchMode;
  return {
    'customRankingInfo': ?customRankingInfo,
    'disableKeywordMatch': ?disableKeywordMatch,
    'diversificationLevel': ?diversificationLevel,
    'enableBroadening': ?enableBroadening,
    'histogramQueries': ?histogramQueries,
    'jobQuery': ?jobQuery,
    'jobView': ?jobView,
    'keywordMatchMode': ?keywordMatchMode,
    'maxPageSize': ?maxPageSize,
    'offset': ?offset,
    'orderBy': ?orderBy,
    'pageToken': ?pageToken,
    'relevanceThreshold': ?relevanceThreshold,
    'requestMetadata': ?requestMetadata,
    'searchMode': ?searchMode,
  };
}