stateDiagram
direction TB
accTitle: This is the accessible title
accDescr: This is an accessible description
classDef notMoving fill:white
classDef movement font-style:italic
classDef activeState fill:#f00,color:white,font-weight:bold,stroke-width:2px,stroke:yellow
[*] --> Wrapper
Wrapper --> PrebidJS : Configure Bids
Wrapper --> PrebidJS : Request Bids
state PrebidJS {
AuctionConfigured --> ConfigureBidders
ConfigureBidders --> [*]
RequestingBids --> PrebidAuction
ReturnBestBid --> BidsBack
BidsBack --> ScaleBids
ReturnScaledBids --> SelectWinner
SelectWinner --> SetTargetting
}
state PrebidServer {
PrebidAuction --> SelectBestBid
SelectBestBid --> ReturnBestBid
}
state Wrapper {
ConfigureAuction --> AuctionConfigured
ScaleBids --> ReturnScaledBids
SetTargetting --> RefreshSlot
RefreshSlot --> AdServerAuction
RenderCreative --> [*]
}
state AdServer {
AdServerAuction --> AuctionWon
AuctionWon --> RenderCreative
}
class ConfigureAuction activeState