INPUT_OBJECT
CreatePopupOrionInput
Input type for creating a PopupOrion
link GraphQL Schema definition
- input CreatePopupOrionInput {
- # Name shown in the back-office list
- : String!
- # Display the pop-up on the Site. Enabling one disables the other pop-ups of the
- # Site.
- : Boolean
- # How long the pop-up stays on screen, in seconds
- : Int!
- # How long the pop-up stays hidden for a visitor who closed it, in seconds
- : 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, as an ISO 8601 string. The time part is
- # ignored.
- : String
- # Last day the pop-up is displayed, as an ISO 8601 string. The time part is
- # ignored.
- : String
- # Translations. A locale with no text at all is ignored.
- : [CreatePopupOrionInputTranslations!]!
- }