Class: QueueIt::CancelEventConfig
- Inherits:
-
Object
- Object
- QueueIt::CancelEventConfig
- 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.
-
#eventId ⇒ Object
Returns the value of attribute eventId.
-
#isCookieHttpOnly ⇒ Object
Returns the value of attribute isCookieHttpOnly.
-
#isCookieSecure ⇒ Object
Returns the value of attribute isCookieSecure.
-
#queueDomain ⇒ Object
Returns the value of attribute queueDomain.
-
#version ⇒ Object
Returns the value of attribute version.
Instance Method Summary collapse
-
#initialize ⇒ CancelEventConfig
constructor
A new instance of CancelEventConfig.
- #toString ⇒ Object
Constructor Details
#initialize ⇒ CancelEventConfig
73 74 75 76 77 78 79 80 81 |
# File 'lib/queueit_knownuserv3/models.rb', line 73 def initialize @eventId = nil @queueDomain = nil = nil @isCookieHttpOnly = false @isCookieSecure = false @version = nil @actionName = "unspecified" end |
Instance Attribute Details
#actionName ⇒ Object
Returns the value of attribute actionName.
71 72 73 |
# File 'lib/queueit_knownuserv3/models.rb', line 71 def actionName @actionName end |
#cookieDomain ⇒ Object
Returns the value of attribute cookieDomain.
67 68 69 |
# File 'lib/queueit_knownuserv3/models.rb', line 67 def end |
#eventId ⇒ Object
Returns the value of attribute eventId.
65 66 67 |
# File 'lib/queueit_knownuserv3/models.rb', line 65 def eventId @eventId end |
#isCookieHttpOnly ⇒ Object
Returns the value of attribute isCookieHttpOnly.
68 69 70 |
# File 'lib/queueit_knownuserv3/models.rb', line 68 def isCookieHttpOnly @isCookieHttpOnly end |
#isCookieSecure ⇒ Object
Returns the value of attribute isCookieSecure.
69 70 71 |
# File 'lib/queueit_knownuserv3/models.rb', line 69 def isCookieSecure @isCookieSecure end |
#queueDomain ⇒ Object
Returns the value of attribute queueDomain.
66 67 68 |
# File 'lib/queueit_knownuserv3/models.rb', line 66 def queueDomain @queueDomain end |
#version ⇒ Object
Returns the value of attribute version.
70 71 72 |
# File 'lib/queueit_knownuserv3/models.rb', line 70 def version @version end |
Instance Method Details
#toString ⇒ Object
83 84 85 86 87 88 89 90 91 |
# File 'lib/queueit_knownuserv3/models.rb', line 83 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) + "&ActionName:" + Utils.toString(actionName) end |