toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final deploymentType = this.deploymentType;
  final locationPolicy = this.locationPolicy;
  final targetResources = this.targetResources;
  final timeRangeSpec = this.timeRangeSpec;
  return {
    'deploymentType': ?deploymentType,
    'locationPolicy': ?locationPolicy,
    'targetResources': ?targetResources,
    'timeRangeSpec': ?timeRangeSpec,
  };
}