toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final consumedMemoryThresholds = this.consumedMemoryThresholds;
  final cpuThresholds = this.cpuThresholds;
  final grantedMemoryThresholds = this.grantedMemoryThresholds;
  final nodeTypeId = this.nodeTypeId;
  final scaleOutSize = this.scaleOutSize;
  final storageThresholds = this.storageThresholds;
  return {
    'consumedMemoryThresholds': ?consumedMemoryThresholds,
    'cpuThresholds': ?cpuThresholds,
    'grantedMemoryThresholds': ?grantedMemoryThresholds,
    'nodeTypeId': ?nodeTypeId,
    'scaleOutSize': ?scaleOutSize,
    'storageThresholds': ?storageThresholds,
  };
}