toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final bucket = this.bucket;
final customPlacementConfig = this.customPlacementConfig;
final hierarchicalNamespace = this.hierarchicalNamespace;
final kind = this.kind;
final location = this.location;
final locationType = this.locationType;
return {
'bucket': ?bucket,
'customPlacementConfig': ?customPlacementConfig,
'hierarchicalNamespace': ?hierarchicalNamespace,
'kind': ?kind,
'location': ?location,
'locationType': ?locationType,
};
}