Class: AdCenterWrapper::LowBudgetBalanceNotification

Inherits:
AccountNotification show all
Defined in:
lib/NotificationService.rb

Overview

https://adcenter.microsoft.com/api/notifications/EntitiesLowBudgetBalanceNotification

notificationId - SOAP::SOAPLong
notificationDate - SOAP::SOAPDateTime
notificationType - (any)
accountId - SOAP::SOAPLong
accountNumber - SOAP::SOAPString
customerId - SOAP::SOAPLong
affectedCampaigns - AdCenterWrapper::ArrayOfLowBudgetBalanceCampaignInfo
accountName - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(notificationId = nil, notificationDate = nil, notificationType = nil, accountId = nil, accountNumber = nil, customerId = nil, affectedCampaigns = nil, accountName = nil) ⇒ LowBudgetBalanceNotification

Returns a new instance of LowBudgetBalanceNotification.

[View source]

204
205
206
207
208
209
210
211
212
213
# File 'lib/NotificationService.rb', line 204

def initialize(notificationId = nil, notificationDate = nil, notificationType = nil, accountId = nil, accountNumber = nil, customerId = nil, affectedCampaigns = nil, accountName = nil)
  @notificationId = notificationId
  @notificationDate = notificationDate
  @notificationType = notificationType
  @accountId = accountId
  @accountNumber = accountNumber
  @customerId = customerId
  @affectedCampaigns = affectedCampaigns
  @accountName = accountName
end

Instance Attribute Details

#accountIdObject

Returns the value of attribute accountId.


198
199
200
# File 'lib/NotificationService.rb', line 198

def accountId
  @accountId
end

#accountNameObject

Returns the value of attribute accountName.


202
203
204
# File 'lib/NotificationService.rb', line 202

def accountName
  @accountName
end

#accountNumberObject

Returns the value of attribute accountNumber.


199
200
201
# File 'lib/NotificationService.rb', line 199

def accountNumber
  @accountNumber
end

#affectedCampaignsObject

Returns the value of attribute affectedCampaigns.


201
202
203
# File 'lib/NotificationService.rb', line 201

def affectedCampaigns
  @affectedCampaigns
end

#customerIdObject

Returns the value of attribute customerId.


200
201
202
# File 'lib/NotificationService.rb', line 200

def customerId
  @customerId
end

#notificationDateObject

Returns the value of attribute notificationDate.


196
197
198
# File 'lib/NotificationService.rb', line 196

def notificationDate
  @notificationDate
end

#notificationIdObject

Returns the value of attribute notificationId.


195
196
197
# File 'lib/NotificationService.rb', line 195

def notificationId
  @notificationId
end

#notificationTypeObject

Returns the value of attribute notificationType.


197
198
199
# File 'lib/NotificationService.rb', line 197

def notificationType
  @notificationType
end