toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final activationUpdateTime = this.activationUpdateTime;
  final active = this.active;
  final displayName = this.displayName;
  final name = this.name;
  final phraseMatchRuleGroups = this.phraseMatchRuleGroups;
  final revisionCreateTime = this.revisionCreateTime;
  final revisionId = this.revisionId;
  final roleMatch = this.roleMatch;
  final type = this.type;
  final updateTime = this.updateTime;
  final versionTag = this.versionTag;
  return {
    'activationUpdateTime': ?activationUpdateTime,
    'active': ?active,
    'displayName': ?displayName,
    'name': ?name,
    'phraseMatchRuleGroups': ?phraseMatchRuleGroups,
    'revisionCreateTime': ?revisionCreateTime,
    'revisionId': ?revisionId,
    'roleMatch': ?roleMatch,
    'type': ?type,
    'updateTime': ?updateTime,
    'versionTag': ?versionTag,
  };
}