Class: QueueIt::QueueEventConfig
- Inherits:
-
Object
- Object
- QueueIt::QueueEventConfig
- Defined in:
- lib/queueit_knownuserv3/models.rb
Instance Attribute Summary collapse
-
#actionName ⇒ Object
Returns the value of attribute actionName.
-
#cookieDomain ⇒ Object
Returns the value of attribute cookieDomain.
-
#cookieValidityMinute ⇒ Object
Returns the value of attribute cookieValidityMinute.
-
#culture ⇒ Object
Returns the value of attribute culture.
-
#eventId ⇒ Object
Returns the value of attribute eventId.
-
#extendCookieValidity ⇒ Object
Returns the value of attribute extendCookieValidity.
-
#isCookieHttpOnly ⇒ Object
Returns the value of attribute isCookieHttpOnly.
-
#isCookieSecure ⇒ Object
Returns the value of attribute isCookieSecure.
-
#layoutName ⇒ Object
Returns the value of attribute layoutName.
-
#queueDomain ⇒ Object
Returns the value of attribute queueDomain.
-
#version ⇒ Object
Returns the value of attribute version.
Instance Method Summary collapse
-
#initialize ⇒ QueueEventConfig
constructor
A new instance of QueueEventConfig.
- #toString ⇒ Object
Constructor Details
#initialize ⇒ QueueEventConfig
Returns a new instance of QueueEventConfig.
35 36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'lib/queueit_knownuserv3/models.rb', line 35 def initialize @eventId = nil @layoutName = nil @culture = nil @queueDomain = nil @extendCookieValidity = nil = nil = nil @isCookieHttpOnly = false @isCookieSecure = false @version = nil @actionName = "unspecified" end |
Instance Attribute Details
#actionName ⇒ Object
Returns the value of attribute actionName.
33 34 35 |
# File 'lib/queueit_knownuserv3/models.rb', line 33 def actionName @actionName end |
#cookieDomain ⇒ Object
Returns the value of attribute cookieDomain.
29 30 31 |
# File 'lib/queueit_knownuserv3/models.rb', line 29 def end |
#cookieValidityMinute ⇒ Object
Returns the value of attribute cookieValidityMinute.
28 29 30 |
# File 'lib/queueit_knownuserv3/models.rb', line 28 def end |
#culture ⇒ Object
Returns the value of attribute culture.
25 26 27 |
# File 'lib/queueit_knownuserv3/models.rb', line 25 def culture @culture end |
#eventId ⇒ Object
Returns the value of attribute eventId.
23 24 25 |
# File 'lib/queueit_knownuserv3/models.rb', line 23 def eventId @eventId end |
#extendCookieValidity ⇒ Object
Returns the value of attribute extendCookieValidity.
27 28 29 |
# File 'lib/queueit_knownuserv3/models.rb', line 27 def extendCookieValidity @extendCookieValidity end |
#isCookieHttpOnly ⇒ Object
Returns the value of attribute isCookieHttpOnly.
30 31 32 |
# File 'lib/queueit_knownuserv3/models.rb', line 30 def isCookieHttpOnly @isCookieHttpOnly end |
#isCookieSecure ⇒ Object
Returns the value of attribute isCookieSecure.
31 32 33 |
# File 'lib/queueit_knownuserv3/models.rb', line 31 def isCookieSecure @isCookieSecure end |
#layoutName ⇒ Object
Returns the value of attribute layoutName.
24 25 26 |
# File 'lib/queueit_knownuserv3/models.rb', line 24 def layoutName @layoutName end |
#queueDomain ⇒ Object
Returns the value of attribute queueDomain.
26 27 28 |
# File 'lib/queueit_knownuserv3/models.rb', line 26 def queueDomain @queueDomain end |
#version ⇒ Object
Returns the value of attribute version.
32 33 34 |
# File 'lib/queueit_knownuserv3/models.rb', line 32 def version @version end |
Instance Method Details
#toString ⇒ Object
49 50 51 52 53 54 55 56 57 58 59 60 61 |
# File 'lib/queueit_knownuserv3/models.rb', line 49 def toString return "EventId:" + Utils.toString(eventId) + "&Version:" + Utils.toString(version) + "&QueueDomain:" + Utils.toString(queueDomain) + "&CookieDomain:" + Utils.toString() + "&IsCookieHttpOnly:" + Utils.toString(isCookieHttpOnly) + "&IsCookieSecure:" + Utils.toString(isCookieSecure) + "&ExtendCookieValidity:" + Utils.toString(extendCookieValidity) + "&CookieValidityMinute:" + Utils.toString() + "&LayoutName:" + Utils.toString(layoutName) + "&Culture:" + Utils.toString(culture) + "&ActionName:" + Utils.toString(actionName) end |