toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final availableCpuPlatforms = this.availableCpuPlatforms;
final creationTimestamp = this.creationTimestamp;
final deprecated = this.deprecated;
final description = this.description;
final id = this.id;
final kind = this.kind;
final name = this.name;
final region = this.region;
final selfLink = this.selfLink;
final status = this.status;
final supportsPzs = this.supportsPzs;
return {
'availableCpuPlatforms': ?availableCpuPlatforms,
'creationTimestamp': ?creationTimestamp,
'deprecated': ?deprecated,
'description': ?description,
'id': ?id,
'kind': ?kind,
'name': ?name,
'region': ?region,
'selfLink': ?selfLink,
'status': ?status,
'supportsPzs': ?supportsPzs,
};
}