processingState property

  1. @JsonKey.new(unknownEnumValue: ProcessingState.unknown)
ProcessingState? processingState
final

This package's reading of processingStateRaw, or null when Apple sent nothing.

Convenient rather than authoritative: a documented, closed vocabulary that does not move when Apple's does, so it is what to write against in the ordinary case. ProcessingState.unknown means this version had no word for what Apple sent, and processingStateRaw is then the only information there is. Most callers want usable or needsNewUpload instead of either.

Implementation

@JsonKey(unknownEnumValue: ProcessingState.unknown)
final ProcessingState? processingState;