toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final associations = this.associations;
  final creationTimestamp = this.creationTimestamp;
  final description = this.description;
  final displayName = this.displayName;
  final fingerprint = this.fingerprint;
  final id = this.id;
  final kind = this.kind;
  final name = this.name;
  final packetMirroringRules = this.packetMirroringRules;
  final parent = this.parent;
  final policyType = this.policyType;
  final region = this.region;
  final ruleTupleCount = this.ruleTupleCount;
  final rules = this.rules;
  final selfLink = this.selfLink;
  final selfLinkWithId = this.selfLinkWithId;
  final shortName = this.shortName;
  return {
    'associations': ?associations,
    'creationTimestamp': ?creationTimestamp,
    'description': ?description,
    'displayName': ?displayName,
    'fingerprint': ?fingerprint,
    'id': ?id,
    'kind': ?kind,
    'name': ?name,
    'packetMirroringRules': ?packetMirroringRules,
    'parent': ?parent,
    'policyType': ?policyType,
    'region': ?region,
    'ruleTupleCount': ?ruleTupleCount,
    'rules': ?rules,
    'selfLink': ?selfLink,
    'selfLinkWithId': ?selfLinkWithId,
    'shortName': ?shortName,
  };
}