Class: AdCenterWrapper::PaymentMethod

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

Overview

https://adcenter.microsoft.com/api/customermanagement/EntitiesPaymentMethod

address - AdCenterWrapper::Address
customerId - SOAP::SOAPLong
id - SOAP::SOAPLong
timeStamp - SOAP::SOAPBase64

Direct Known Subclasses

CreditCardPaymentMethod

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(address = nil, customerId = nil, id = nil, timeStamp = nil) ⇒ PaymentMethod

Returns a new instance of PaymentMethod.



7344
7345
7346
7347
7348
7349
# File 'lib/adcenter_wrapper_entities.rb', line 7344

def initialize(address = nil, customerId = nil, id = nil, timeStamp = nil)
  @address = address
  @customerId = customerId
  @id = id
  @timeStamp = timeStamp
end

Instance Attribute Details

#addressObject

Returns the value of attribute address.



7339
7340
7341
# File 'lib/adcenter_wrapper_entities.rb', line 7339

def address
  @address
end

#customerIdObject

Returns the value of attribute customerId.



7340
7341
7342
# File 'lib/adcenter_wrapper_entities.rb', line 7340

def customerId
  @customerId
end

#idObject

Returns the value of attribute id.



7341
7342
7343
# File 'lib/adcenter_wrapper_entities.rb', line 7341

def id
  @id
end

#timeStampObject

Returns the value of attribute timeStamp.



7342
7343
7344
# File 'lib/adcenter_wrapper_entities.rb', line 7342

def timeStamp
  @timeStamp
end