OBJECT
PopupOrion
Pop-up displayed on an Orion Site
link GraphQL Schema definition
- type PopupOrion {
- # Id
- : Int!
- # Name shown in the back-office list
- : String!
- # Is the pop-up displayed on the Site? A Site displays at most one pop-up.
- : Boolean!
- # How long the pop-up stays on screen, in seconds. 0 keeps it until the visitor
- # closes it.
- : Int!
- # How long the pop-up stays hidden for a visitor who closed it, in seconds. 0
- # shows it on every page load.
- : Int!
- # Text color, as an hexadecimal value
- : String!
- # Background color, as an hexadecimal value
- : String!
- # Border style
- : PopupBorderType!
- # Border width, in pixels
- : Int!
- # Border color, as an hexadecimal value
- : String!
- # Border radius, in pixels
- : Int!
- # Shadow preset
- : PopupShadow!
- # Background opacity, from 0 to 100
- : Int!
- # First day the pop-up is displayed
- : DateTime
- # Last day the pop-up is displayed
- : DateTime
- # Date of creation
- : DateTime!
- # Date of last update
- : DateTime!
- # Translations
- : [PopupOrionTranslation!]!
- }