toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final creationTimestamp = this.creationTimestamp;
final description = this.description;
final fingerprint = this.fingerprint;
final healthAggregationPolicy = this.healthAggregationPolicy;
final id = this.id;
final kind = this.kind;
final name = this.name;
final region = this.region;
final selfLink = this.selfLink;
final selfLinkWithId = this.selfLinkWithId;
final sourceType = this.sourceType;
final sources = this.sources;
return {
'creationTimestamp': ?creationTimestamp,
'description': ?description,
'fingerprint': ?fingerprint,
'healthAggregationPolicy': ?healthAggregationPolicy,
'id': ?id,
'kind': ?kind,
'name': ?name,
'region': ?region,
'selfLink': ?selfLink,
'selfLinkWithId': ?selfLinkWithId,
'sourceType': ?sourceType,
'sources': ?sources,
};
}