toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final applicationMatcher = this.applicationMatcher;
  final basicProfile = this.basicProfile;
  final createTime = this.createTime;
  final description = this.description;
  final enabled = this.enabled;
  final name = this.name;
  final priority = this.priority;
  final sessionMatcher = this.sessionMatcher;
  final tlsInspectionEnabled = this.tlsInspectionEnabled;
  final updateTime = this.updateTime;
  return {
    'applicationMatcher': ?applicationMatcher,
    'basicProfile': ?basicProfile,
    'createTime': ?createTime,
    'description': ?description,
    'enabled': ?enabled,
    'name': ?name,
    'priority': ?priority,
    'sessionMatcher': ?sessionMatcher,
    'tlsInspectionEnabled': ?tlsInspectionEnabled,
    'updateTime': ?updateTime,
  };
}