toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final createTime = this.createTime;
  final encryptionSpec = this.encryptionSpec;
  final etag = this.etag;
  final labels = this.labels;
  final name = this.name;
  final onlineServingConfig = this.onlineServingConfig;
  final onlineStorageTtlDays = this.onlineStorageTtlDays;
  final satisfiesPzi = this.satisfiesPzi;
  final satisfiesPzs = this.satisfiesPzs;
  final state = this.state;
  final updateTime = this.updateTime;
  return {
    'createTime': ?createTime,
    'encryptionSpec': ?encryptionSpec,
    'etag': ?etag,
    'labels': ?labels,
    'name': ?name,
    'onlineServingConfig': ?onlineServingConfig,
    'onlineStorageTtlDays': ?onlineStorageTtlDays,
    'satisfiesPzi': ?satisfiesPzi,
    'satisfiesPzs': ?satisfiesPzs,
    'state': ?state,
    'updateTime': ?updateTime,
  };
}