Class: AdCenterWrapper::Invoice

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

Overview

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

data - SOAP::SOAPBase64
id - SOAP::SOAPLong
type - AdCenterWrapper::DataType

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil, id = nil, type = nil) ⇒ Invoice

Returns a new instance of Invoice.

[View source]

59
60
61
62
63
# File 'lib/CustomerBillingService.rb', line 59

def initialize(data = nil, id = nil, type = nil)
  @data = data
  @id = id
  @type = type
end

Instance Attribute Details

#dataObject

Returns the value of attribute data.


55
56
57
# File 'lib/CustomerBillingService.rb', line 55

def data
  @data
end

#idObject

Returns the value of attribute id.


56
57
58
# File 'lib/CustomerBillingService.rb', line 56

def id
  @id
end

#typeObject

Returns the value of attribute type.


57
58
59
# File 'lib/CustomerBillingService.rb', line 57

def type
  @type
end