toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final checkIntervalSec = this.checkIntervalSec;
final creationTimestamp = this.creationTimestamp;
final description = this.description;
final grpcHealthCheck = this.grpcHealthCheck;
final grpcTlsHealthCheck = this.grpcTlsHealthCheck;
final healthyThreshold = this.healthyThreshold;
final http2HealthCheck = this.http2HealthCheck;
final httpHealthCheck = this.httpHealthCheck;
final httpsHealthCheck = this.httpsHealthCheck;
final id = this.id;
final kind = this.kind;
final logConfig = this.logConfig;
final name = this.name;
final region = this.region;
final selfLink = this.selfLink;
final sourceRegions = this.sourceRegions;
final sslHealthCheck = this.sslHealthCheck;
final tcpHealthCheck = this.tcpHealthCheck;
final timeoutSec = this.timeoutSec;
final type = this.type;
final unhealthyThreshold = this.unhealthyThreshold;
return {
'checkIntervalSec': ?checkIntervalSec,
'creationTimestamp': ?creationTimestamp,
'description': ?description,
'grpcHealthCheck': ?grpcHealthCheck,
'grpcTlsHealthCheck': ?grpcTlsHealthCheck,
'healthyThreshold': ?healthyThreshold,
'http2HealthCheck': ?http2HealthCheck,
'httpHealthCheck': ?httpHealthCheck,
'httpsHealthCheck': ?httpsHealthCheck,
'id': ?id,
'kind': ?kind,
'logConfig': ?logConfig,
'name': ?name,
'region': ?region,
'selfLink': ?selfLink,
'sourceRegions': ?sourceRegions,
'sslHealthCheck': ?sslHealthCheck,
'tcpHealthCheck': ?tcpHealthCheck,
'timeoutSec': ?timeoutSec,
'type': ?type,
'unhealthyThreshold': ?unhealthyThreshold,
};
}