Class: SOAPCookieInfo

Inherits:
Object
  • Object
show all
Defined in:
lib/crowd/soap/default.rb

Overview

http://soap.integration.crowd.atlassian.comSOAPCookieInfo

domain - SOAP::SOAPString
secure - SOAP::SOAPBoolean

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(domain = nil, secure = nil) ⇒ SOAPCookieInfo

Returns a new instance of SOAPCookieInfo.



212
213
214
215
# File 'lib/crowd/soap/default.rb', line 212

def initialize(domain = nil, secure = nil)
  @domain = domain
  @secure = secure
end

Instance Attribute Details

#domainObject

Returns the value of attribute domain.



209
210
211
# File 'lib/crowd/soap/default.rb', line 209

def domain
  @domain
end

#secureObject

Returns the value of attribute secure.



210
211
212
# File 'lib/crowd/soap/default.rb', line 210

def secure
  @secure
end