toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final address = this.address;
  final addressType = this.addressType;
  final creationTimestamp = this.creationTimestamp;
  final description = this.description;
  final id = this.id;
  final ipCollection = this.ipCollection;
  final ipVersion = this.ipVersion;
  final ipv6EndpointType = this.ipv6EndpointType;
  final kind = this.kind;
  final labelFingerprint = this.labelFingerprint;
  final labels = this.labels;
  final name = this.name;
  final network = this.network;
  final networkTier = this.networkTier;
  final prefixLength = this.prefixLength;
  final purpose = this.purpose;
  final region = this.region;
  final selfLink = this.selfLink;
  final status = this.status;
  final subnetwork = this.subnetwork;
  final users = this.users;
  return {
    'address': ?address,
    'addressType': ?addressType,
    'creationTimestamp': ?creationTimestamp,
    'description': ?description,
    'id': ?id,
    'ipCollection': ?ipCollection,
    'ipVersion': ?ipVersion,
    'ipv6EndpointType': ?ipv6EndpointType,
    'kind': ?kind,
    'labelFingerprint': ?labelFingerprint,
    'labels': ?labels,
    'name': ?name,
    'network': ?network,
    'networkTier': ?networkTier,
    'prefixLength': ?prefixLength,
    'purpose': ?purpose,
    'region': ?region,
    'selfLink': ?selfLink,
    'status': ?status,
    'subnetwork': ?subnetwork,
    'users': ?users,
  };
}