Class: ChannelAdvisor::AdminServiceSOAP::AuthorizationResponse

Inherits:
Object
  • Object
show all
Defined in:
lib/channel_advisor/admin_service/types.rb

Overview

/AuthorizationResponse

accountID - SOAP::SOAPString
localID - SOAP::SOAPInt
accountName - SOAP::SOAPString
accountType - SOAP::SOAPString
resourceName - SOAP::SOAPString
status - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(accountID = nil, localID = nil, accountName = nil, accountType = nil, resourceName = nil, status = nil) ⇒ AuthorizationResponse

Returns a new instance of AuthorizationResponse.



46
47
48
49
50
51
52
53
# File 'lib/channel_advisor/admin_service/types.rb', line 46

def initialize(accountID = nil, localID = nil, accountName = nil, accountType = nil, resourceName = nil, status = nil)
  @accountID = accountID
  @localID = localID
  @accountName = accountName
  @accountType = accountType
  @resourceName = resourceName
  @status = status
end

Instance Attribute Details

#accountIDObject

Returns the value of attribute accountID.



39
40
41
# File 'lib/channel_advisor/admin_service/types.rb', line 39

def accountID
  @accountID
end

#accountNameObject

Returns the value of attribute accountName.



41
42
43
# File 'lib/channel_advisor/admin_service/types.rb', line 41

def accountName
  @accountName
end

#accountTypeObject

Returns the value of attribute accountType.



42
43
44
# File 'lib/channel_advisor/admin_service/types.rb', line 42

def accountType
  @accountType
end

#localIDObject

Returns the value of attribute localID.



40
41
42
# File 'lib/channel_advisor/admin_service/types.rb', line 40

def localID
  @localID
end

#resourceNameObject

Returns the value of attribute resourceName.



43
44
45
# File 'lib/channel_advisor/admin_service/types.rb', line 43

def resourceName
  @resourceName
end

#statusObject

Returns the value of attribute status.



44
45
46
# File 'lib/channel_advisor/admin_service/types.rb', line 44

def status
  @status
end