Class: AdCenterWrapper::GetUserResponse

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

Overview

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#accountsObject

Returns the value of attribute accounts.



5140
5141
5142
# File 'lib/adcenter_wrapper_entities.rb', line 5140

def accounts
  @accounts
end

#customersObject

Returns the value of attribute customers.



5141
5142
5143
# File 'lib/adcenter_wrapper_entities.rb', line 5141

def customers
  @customers
end

#rolesObject

Returns the value of attribute roles.



5139
5140
5141
# File 'lib/adcenter_wrapper_entities.rb', line 5139

def roles
  @roles
end

#userObject

Returns the value of attribute user.



5138
5139
5140
# File 'lib/adcenter_wrapper_entities.rb', line 5138

def user
  @user
end