toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final capacityConfig = this.capacityConfig;
  final config = this.config;
  final createTime = this.createTime;
  final gcpConfig = this.gcpConfig;
  final kafkaCluster = this.kafkaCluster;
  final labels = this.labels;
  final name = this.name;
  final satisfiesPzi = this.satisfiesPzi;
  final satisfiesPzs = this.satisfiesPzs;
  final state = this.state;
  final updateTime = this.updateTime;
  return {
    'capacityConfig': ?capacityConfig,
    'config': ?config,
    'createTime': ?createTime,
    'gcpConfig': ?gcpConfig,
    'kafkaCluster': ?kafkaCluster,
    'labels': ?labels,
    'name': ?name,
    'satisfiesPzi': ?satisfiesPzi,
    'satisfiesPzs': ?satisfiesPzs,
    'state': ?state,
    'updateTime': ?updateTime,
  };
}