Class CasinoSession
java.lang.Object
com.sportradar.mbs.sdk.entities.common.CasinoSession
Represents a casino session.
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
Builder class for creating instances of the CasinoSession class. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionGets the end time of the casino session in UTC millis.getGame()
Gets the casino game.getId()
Gets the ID of the casino session.Payout[]
Gets the payout array.getSpins()
Gets the casino spins array.Stake[]
getStake()
Gets the stake array.Gets the start time of the casino session in UTC millis.static CasinoSession.Builder
Creates a new instance of the CasinoSession.Builder class.void
Sets the end time of the casino session in UTC millis.void
setGame
(CasinoGame value) Sets the casino game.void
Sets the ID of the casino session.void
Sets the payout array.void
setSpins
(CasinoSpin[] value) Sets the casino spins array.void
Sets the stake array.void
setStartUtc
(Long value) Sets the start time of the casino session in UTC millis.
-
Constructor Details
-
CasinoSession
public CasinoSession()
-
-
Method Details
-
newBuilder
Creates a new instance of the CasinoSession.Builder class.- Returns:
- A new instance of the CasinoSession.Builder class.
-
getStake
Gets the stake array.- Returns:
- The stake array.
-
setStake
Sets the stake array.- Parameters:
value
- The stake array to set.
-
getGame
Gets the casino game.- Returns:
- The casino game.
-
setGame
Sets the casino game.- Parameters:
value
- The casino game to set.
-
getSpins
Gets the casino spins array.- Returns:
- The casino spins array.
-
setSpins
Sets the casino spins array.- Parameters:
value
- The casino spins array to set.
-
getPayout
Gets the payout array.- Returns:
- The payout array.
-
setPayout
Sets the payout array.- Parameters:
value
- The payout array to set.
-
getId
Gets the ID of the casino session.- Returns:
- The ID of the casino session.
-
setId
Sets the ID of the casino session.- Parameters:
value
- The ID of the casino session to set.
-
getStartUtc
Gets the start time of the casino session in UTC millis.- Returns:
- The start time of the casino session in UTC millis.
-
setStartUtc
Sets the start time of the casino session in UTC millis.- Parameters:
value
- The start time of the casino session in UTC millis to set.
-
getEndUtc
Gets the end time of the casino session in UTC millis.- Returns:
- The end time of the casino session in UTC millis.
-
setEndUtc
Sets the end time of the casino session in UTC millis.- Parameters:
value
- The end time of the casino session in UTC millis to set.
-