I am learning UML and I've focused on a Netflix-like project on which to practice on.
I'm trying to create a simple sequence diagram for 'stream movie' consisting of only the entity classes (so ignoring objects like the user interface, server, and database).
The idea is that members can search the movie catalog, select a movie, the system will then verify whether they have an unlimited or limited membership. If unlimited, they can stream the movie, otherwise, the system must check whether they have reached their limit of 10 movies that month. If they have, then they can not stream the movie and must receive a message stating why, or be asked to upgrade their account, otherwise, they can stream the movie as normal.
This is the class diagram demonstrating the associations so far:
And this is the sequence diagram for 'stream movie' so far, which I need some assistance with:
What is the best way to build that sequence diagram, yet keeping it relatively simple?
Thanks in advance.