from String
Resolves a wire-form status string to the matching enum constant.
Comparison is case-sensitive against value. Returns null for any unknown value, including values that differ only in casing. The case-sensitive behavior keeps the SDK forward-compatible: a future spec amendment that introduces a new lowercase status will be accepted by Sep31TransactionResponse.status (raw String) and surface as null here rather than as a mis-typed enum.
Sep31TransactionStatus.fromString("completed") // returns Sep31TransactionStatus.COMPLETED
Sep31TransactionStatus.fromString("COMPLETED") // returns null (case-sensitive)
Sep31TransactionStatus.fromString("future_new") // returns null (unknown)Content copied to clipboard
Return
The matching enum constant, or null if value is not a known status.
Parameters
value
The wire-form status string to resolve.