toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final createTime = this.createTime;
  final displayName = this.displayName;
  final encryptionSpec = this.encryptionSpec;
  final endTime = this.endTime;
  final error = this.error;
  final jobSpec = this.jobSpec;
  final labels = this.labels;
  final name = this.name;
  final satisfiesPzi = this.satisfiesPzi;
  final satisfiesPzs = this.satisfiesPzs;
  final startTime = this.startTime;
  final state = this.state;
  final updateTime = this.updateTime;
  final webAccessUris = this.webAccessUris;
  return {
    'createTime': ?createTime,
    'displayName': ?displayName,
    'encryptionSpec': ?encryptionSpec,
    'endTime': ?endTime,
    'error': ?error,
    'jobSpec': ?jobSpec,
    'labels': ?labels,
    'name': ?name,
    'satisfiesPzi': ?satisfiesPzi,
    'satisfiesPzs': ?satisfiesPzs,
    'startTime': ?startTime,
    'state': ?state,
    'updateTime': ?updateTime,
    'webAccessUris': ?webAccessUris,
  };
}