Class: QueueIt::QueueEventConfig
- Inherits:
-
Object
- Object
- QueueIt::QueueEventConfig
- Defined in:
- lib/queueit_knownuserv3/models.rb
Instance Attribute Summary collapse
-
#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.
-
#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.
45 46 47 48 49 50 51 52 53 54 |
# File 'lib/queueit_knownuserv3/models.rb', line 45 def initialize @eventId = nil @layoutName = nil @culture = nil @queueDomain = nil @extendCookieValidity = nil @cookieValidityMinute = nil @cookieDomain = nil @version = nil end |
Instance Attribute Details
#cookieDomain ⇒ Object
Returns the value of attribute cookieDomain.
42 43 44 |
# File 'lib/queueit_knownuserv3/models.rb', line 42 def @cookieDomain end |
#cookieValidityMinute ⇒ Object
Returns the value of attribute cookieValidityMinute.
41 42 43 |
# File 'lib/queueit_knownuserv3/models.rb', line 41 def @cookieValidityMinute end |
#culture ⇒ Object
Returns the value of attribute culture.
38 39 40 |
# File 'lib/queueit_knownuserv3/models.rb', line 38 def culture @culture end |
#eventId ⇒ Object
Returns the value of attribute eventId.
36 37 38 |
# File 'lib/queueit_knownuserv3/models.rb', line 36 def eventId @eventId end |
#extendCookieValidity ⇒ Object
Returns the value of attribute extendCookieValidity.
40 41 42 |
# File 'lib/queueit_knownuserv3/models.rb', line 40 def extendCookieValidity @extendCookieValidity end |
#layoutName ⇒ Object
Returns the value of attribute layoutName.
37 38 39 |
# File 'lib/queueit_knownuserv3/models.rb', line 37 def layoutName @layoutName end |
#queueDomain ⇒ Object
Returns the value of attribute queueDomain.
39 40 41 |
# File 'lib/queueit_knownuserv3/models.rb', line 39 def queueDomain @queueDomain end |
#version ⇒ Object
Returns the value of attribute version.
43 44 45 |
# File 'lib/queueit_knownuserv3/models.rb', line 43 def version @version end |
Instance Method Details
#toString ⇒ Object
56 57 58 59 60 61 62 63 64 65 |
# File 'lib/queueit_knownuserv3/models.rb', line 56 def toString return "EventId:" + Utils.toString(eventId) + "&Version:" + Utils.toString(version) + "&QueueDomain:" + Utils.toString(queueDomain) + "&CookieDomain:" + Utils.toString() + "&ExtendCookieValidity:" + Utils.toString(extendCookieValidity) + "&CookieValidityMinute:" + Utils.toString() + "&LayoutName:" + Utils.toString(layoutName) + "&Culture:" + Utils.toString(culture) end |