Class: AdCenterWrapper::GetUserResponse
- Inherits:
-
Object
- Object
- AdCenterWrapper::GetUserResponse
- Defined in:
- lib/adcenter_wrapper_entities.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
#initialize(user = nil, roles = nil, accounts = nil, customers = nil) ⇒ GetUserResponse
Returns a new instance of GetUserResponse.
5143 5144 5145 5146 5147 5148 |
# File 'lib/adcenter_wrapper_entities.rb', line 5143 def initialize(user = nil, roles = nil, accounts = nil, customers = nil) @user = user @roles = roles @accounts = accounts @customers = customers end |
Instance Attribute Details
#accounts ⇒ Object
Returns the value of attribute accounts.
5140 5141 5142 |
# File 'lib/adcenter_wrapper_entities.rb', line 5140 def accounts @accounts end |
#customers ⇒ Object
Returns the value of attribute customers.
5141 5142 5143 |
# File 'lib/adcenter_wrapper_entities.rb', line 5141 def customers @customers end |
#roles ⇒ Object
Returns the value of attribute roles.
5139 5140 5141 |
# File 'lib/adcenter_wrapper_entities.rb', line 5139 def roles @roles end |
#user ⇒ Object
Returns the value of attribute user.
5138 5139 5140 |
# File 'lib/adcenter_wrapper_entities.rb', line 5138 def user @user end |