Skip to main content

Practice ยท 1 of 4

Order status flow

CHALLENGE
Difficulty: beginner+25 XP

Implement in Solution: enum OrderStatus { Pending, Paid, Shipped, Cancelled } and static OrderStatus? NextStatus(OrderStatus current) returning the next step in Pending โ†’ Paid โ†’ Shipped; Cancelled has no next step and returns null. Return type is the nullable enum OrderStatus?.

Back to lesson: Practice: Data modeling workout