Class: QueueIt::QueueEventConfig

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeQueueEventConfig

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

#cookieDomainObject

Returns the value of attribute cookieDomain.



42
43
44
# File 'lib/queueit_knownuserv3/models.rb', line 42

def cookieDomain
  @cookieDomain
end

#cookieValidityMinuteObject

Returns the value of attribute cookieValidityMinute.



41
42
43
# File 'lib/queueit_knownuserv3/models.rb', line 41

def cookieValidityMinute
  @cookieValidityMinute
end

#cultureObject

Returns the value of attribute culture.



38
39
40
# File 'lib/queueit_knownuserv3/models.rb', line 38

def culture
  @culture
end

#eventIdObject

Returns the value of attribute eventId.



36
37
38
# File 'lib/queueit_knownuserv3/models.rb', line 36

def eventId
  @eventId
end

#extendCookieValidityObject

Returns the value of attribute extendCookieValidity.



40
41
42
# File 'lib/queueit_knownuserv3/models.rb', line 40

def extendCookieValidity
  @extendCookieValidity
end

#layoutNameObject

Returns the value of attribute layoutName.



37
38
39
# File 'lib/queueit_knownuserv3/models.rb', line 37

def layoutName
  @layoutName
end

#queueDomainObject

Returns the value of attribute queueDomain.



39
40
41
# File 'lib/queueit_knownuserv3/models.rb', line 39

def queueDomain
  @queueDomain
end

#versionObject

Returns the value of attribute version.



43
44
45
# File 'lib/queueit_knownuserv3/models.rb', line 43

def version
  @version
end

Instance Method Details

#toStringObject



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(cookieDomain) + 
       "&ExtendCookieValidity:" + Utils.toString(extendCookieValidity) +
       "&CookieValidityMinute:" + Utils.toString(cookieValidityMinute) + 
       "&LayoutName:" + Utils.toString(layoutName) + 
       "&Culture:" + Utils.toString(culture)
end