Class: AdCenterWrapper::GetUserResponse
- Inherits:
-
Object
- Object
- AdCenterWrapper::GetUserResponse
- Defined in:
- lib/CustomerManagementService.rb
Overview
https://adcenter.microsoft.com/api/customermanagementGetUserResponse
user - AdCenterWrapper::User
roles - AdCenterWrapper::ArrayOfint
accounts - AdCenterWrapper::ArrayOflong
customers - AdCenterWrapper::ArrayOflong
Instance Attribute Summary collapse
-
#accounts ⇒ Object
Returns the value of attribute accounts.
-
#customers ⇒ Object
Returns the value of attribute customers.
-
#roles ⇒ Object
Returns the value of attribute roles.
-
#user ⇒ Object
Returns the value of attribute user.
Instance Method Summary collapse
-
#initialize(user = nil, roles = nil, accounts = nil, customers = nil) ⇒ GetUserResponse
constructor
A new instance of GetUserResponse.
Constructor Details
permalink #initialize(user = nil, roles = nil, accounts = nil, customers = nil) ⇒ GetUserResponse
Returns a new instance of GetUserResponse.
1350 1351 1352 1353 1354 1355 |
# File 'lib/CustomerManagementService.rb', line 1350 def initialize(user = nil, roles = nil, accounts = nil, customers = nil) @user = user @roles = roles @accounts = accounts @customers = customers end |
Instance Attribute Details
permalink #accounts ⇒ Object
Returns the value of attribute accounts.
1347 1348 1349 |
# File 'lib/CustomerManagementService.rb', line 1347 def accounts @accounts end |
permalink #customers ⇒ Object
Returns the value of attribute customers.
1348 1349 1350 |
# File 'lib/CustomerManagementService.rb', line 1348 def customers @customers end |
permalink #roles ⇒ Object
Returns the value of attribute roles.
1346 1347 1348 |
# File 'lib/CustomerManagementService.rb', line 1346 def roles @roles end |
permalink #user ⇒ Object
Returns the value of attribute user.
1345 1346 1347 |
# File 'lib/CustomerManagementService.rb', line 1345 def user @user end |