Class: AdCenterWrapper::Invoice
- Inherits:
-
Object
- Object
- AdCenterWrapper::Invoice
- 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
-
#data ⇒ Object
Returns the value of attribute data.
-
#id ⇒ Object
Returns the value of attribute id.
-
#type ⇒ Object
Returns the value of attribute type.
Instance Method Summary collapse
-
#initialize(data = nil, id = nil, type = nil) ⇒ Invoice
constructor
A new instance of Invoice.
Constructor Details
permalink #initialize(data = nil, id = nil, type = nil) ⇒ Invoice
Returns a new instance of Invoice.
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
permalink #data ⇒ Object
Returns the value of attribute data.
55 56 57 |
# File 'lib/CustomerBillingService.rb', line 55 def data @data end |
permalink #id ⇒ Object
Returns the value of attribute id.
56 57 58 |
# File 'lib/CustomerBillingService.rb', line 56 def id @id end |
permalink #type ⇒ Object
Returns the value of attribute type.
57 58 59 |
# File 'lib/CustomerBillingService.rb', line 57 def type @type end |