Class: QueueIt::CancelEventConfig

Inherits:
Object
  • Object
show all
Defined in:
lib/queueit_knownuserv3/models.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeCancelEventConfig



73
74
75
76
77
78
79
80
81
# File 'lib/queueit_knownuserv3/models.rb', line 73

def initialize
  @eventId = nil
  @queueDomain = nil
  @cookieDomain = nil
  @isCookieHttpOnly = false
  @isCookieSecure = false
  @version = nil
  @actionName = "unspecified"
end

Instance Attribute Details

#actionNameObject

Returns the value of attribute actionName.



71
72
73
# File 'lib/queueit_knownuserv3/models.rb', line 71

def actionName
  @actionName
end

#cookieDomainObject

Returns the value of attribute cookieDomain.



67
68
69
# File 'lib/queueit_knownuserv3/models.rb', line 67

def cookieDomain
  @cookieDomain
end

#eventIdObject

Returns the value of attribute eventId.



65
66
67
# File 'lib/queueit_knownuserv3/models.rb', line 65

def eventId
  @eventId
end

#isCookieHttpOnlyObject

Returns the value of attribute isCookieHttpOnly.



68
69
70
# File 'lib/queueit_knownuserv3/models.rb', line 68

def isCookieHttpOnly
  @isCookieHttpOnly
end

#isCookieSecureObject

Returns the value of attribute isCookieSecure.



69
70
71
# File 'lib/queueit_knownuserv3/models.rb', line 69

def isCookieSecure
  @isCookieSecure
end

#queueDomainObject

Returns the value of attribute queueDomain.



66
67
68
# File 'lib/queueit_knownuserv3/models.rb', line 66

def queueDomain
  @queueDomain
end

#versionObject

Returns the value of attribute version.



70
71
72
# File 'lib/queueit_knownuserv3/models.rb', line 70

def version
  @version
end

Instance Method Details

#toStringObject



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(cookieDomain) +
       "&IsCookieHttpOnly:" + Utils.toString(isCookieHttpOnly) + 
       "&IsCookieSecure:" + Utils.toString(isCookieSecure) + 
       "&ActionName:" + Utils.toString(actionName)
end