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

Returns a new instance of CancelEventConfig.



20
21
22
23
24
25
# File 'lib/queueit_knownuserv3/models.rb', line 20

def initialize
	@eventId = nil
	@queueDomain = nil
	@cookieDomain = nil
	@version = nil
end

Instance Attribute Details

#cookieDomainObject

Returns the value of attribute cookieDomain.



17
18
19
# File 'lib/queueit_knownuserv3/models.rb', line 17

def cookieDomain
  @cookieDomain
end

#eventIdObject

Returns the value of attribute eventId.



15
16
17
# File 'lib/queueit_knownuserv3/models.rb', line 15

def eventId
  @eventId
end

#queueDomainObject

Returns the value of attribute queueDomain.



16
17
18
# File 'lib/queueit_knownuserv3/models.rb', line 16

def queueDomain
  @queueDomain
end

#versionObject

Returns the value of attribute version.



18
19
20
# File 'lib/queueit_knownuserv3/models.rb', line 18

def version
  @version
end

Instance Method Details

#toStringObject



27
28
29
30
31
32
# File 'lib/queueit_knownuserv3/models.rb', line 27

def toString
	return "EventId:" + Utils.toString(eventId) + 
		   "&Version:" + Utils.toString(version) +
		   "&QueueDomain:" + Utils.toString(queueDomain) + 
		   "&CookieDomain:" + Utils.toString(cookieDomain)
end