Class: AdCenterWrapper::SignupCustomerRequest

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

Overview

https://adcenter.microsoft.com/api/customermanagementSignupCustomerRequest

customer - AdCenterWrapper::Customer
user - AdCenterWrapper::User
 - AdCenterWrapper::Account
parentCustomerId - SOAP::SOAPLong
applicationScope - AdCenterWrapper::ApplicationType

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(customer = nil, user = nil, account = nil, parentCustomerId = nil, applicationScope = nil) ⇒ SignupCustomerRequest

Returns a new instance of SignupCustomerRequest.

[View source]

1121
1122
1123
1124
1125
1126
1127
# File 'lib/CustomerManagementService.rb', line 1121

def initialize(customer = nil, user = nil,  = nil, parentCustomerId = nil, applicationScope = nil)
  @customer = customer
  @user = user
  @account = 
  @parentCustomerId = parentCustomerId
  @applicationScope = applicationScope
end

Instance Attribute Details

#accountObject

Returns the value of attribute account.


1117
1118
1119
# File 'lib/CustomerManagementService.rb', line 1117

def 
  @account
end

#applicationScopeObject

Returns the value of attribute applicationScope.


1119
1120
1121
# File 'lib/CustomerManagementService.rb', line 1119

def applicationScope
  @applicationScope
end

#customerObject

Returns the value of attribute customer.


1115
1116
1117
# File 'lib/CustomerManagementService.rb', line 1115

def customer
  @customer
end

#parentCustomerIdObject

Returns the value of attribute parentCustomerId.


1118
1119
1120
# File 'lib/CustomerManagementService.rb', line 1118

def parentCustomerId
  @parentCustomerId
end

#userObject

Returns the value of attribute user.


1116
1117
1118
# File 'lib/CustomerManagementService.rb', line 1116

def user
  @user
end