toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final createTime = this.createTime;
  final customInterceptProfile = this.customInterceptProfile;
  final customMirroringProfile = this.customMirroringProfile;
  final description = this.description;
  final etag = this.etag;
  final labels = this.labels;
  final name = this.name;
  final threatPreventionProfile = this.threatPreventionProfile;
  final type = this.type;
  final updateTime = this.updateTime;
  return {
    'createTime': ?createTime,
    'customInterceptProfile': ?customInterceptProfile,
    'customMirroringProfile': ?customMirroringProfile,
    'description': ?description,
    'etag': ?etag,
    'labels': ?labels,
    'name': ?name,
    'threatPreventionProfile': ?threatPreventionProfile,
    'type': ?type,
    'updateTime': ?updateTime,
  };
}