Class: AdCenterWrapper::UserInfo

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

Overview

https://adcenter.microsoft.com/api/customermanagement/EntitiesUserInfo

id - SOAP::SOAPLong
userName - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id = nil, userName = nil) ⇒ UserInfo

Returns a new instance of UserInfo.

[View source]

452
453
454
455
# File 'lib/CustomerManagementService.rb', line 452

def initialize(id = nil, userName = nil)
  @id = id
  @userName = userName
end

Instance Attribute Details

#idObject

Returns the value of attribute id.


449
450
451
# File 'lib/CustomerManagementService.rb', line 449

def id
  @id
end

#userNameObject

Returns the value of attribute userName.


450
451
452
# File 'lib/CustomerManagementService.rb', line 450

def userName
  @userName
end