toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final byoipApiVersion = this.byoipApiVersion;
  final creationTimestamp = this.creationTimestamp;
  final description = this.description;
  final dnsVerificationIp = this.dnsVerificationIp;
  final fingerprint = this.fingerprint;
  final id = this.id;
  final ipCidrRange = this.ipCidrRange;
  final ipv6AccessType = this.ipv6AccessType;
  final kind = this.kind;
  final name = this.name;
  final pdpScope = this.pdpScope;
  final publicDelegatedPrefixs = this.publicDelegatedPrefixs;
  final selfLink = this.selfLink;
  final sharedSecret = this.sharedSecret;
  final status = this.status;
  return {
    'byoipApiVersion': ?byoipApiVersion,
    'creationTimestamp': ?creationTimestamp,
    'description': ?description,
    'dnsVerificationIp': ?dnsVerificationIp,
    'fingerprint': ?fingerprint,
    'id': ?id,
    'ipCidrRange': ?ipCidrRange,
    'ipv6AccessType': ?ipv6AccessType,
    'kind': ?kind,
    'name': ?name,
    'pdpScope': ?pdpScope,
    'publicDelegatedPrefixs': ?publicDelegatedPrefixs,
    'selfLink': ?selfLink,
    'sharedSecret': ?sharedSecret,
    'status': ?status,
  };
}