Class: Softlayer::Billing::Invoice::Next
- Inherits:
-
Model
- Object
- Model
- Softlayer::Billing::Invoice::Next
show all
- Defined in:
- lib/softlayer/billing/invoice/next.rb
Defined Under Namespace
Classes: Representer
Constant Summary
collapse
- SERVICE =
'SoftLayer_Billing_Invoice_Next'
Instance Method Summary
collapse
Methods inherited from Model
all, all_request_for, create, find, parse, request, #request, #to_hash
Instance Method Details
#get_excel(document_create_date = nil) ⇒ Object
7
8
9
10
|
# File 'lib/softlayer/billing/invoice/next.rb', line 7
def get_excel(document_create_date = nil)
message = {document_create_date: document_create_date}
request(:get_excel, Softlayer::Base64Binary, message)
end
|
#get_pdf(document_create_date = nil) ⇒ Object
12
13
14
15
|
# File 'lib/softlayer/billing/invoice/next.rb', line 12
def get_pdf(document_create_date = nil)
message = {document_create_date: document_create_date}
request(:get_pdf, Softlayer::Base64Binary, message)
end
|
#get_pdf_detailed(document_create_date = nil) ⇒ Object
17
18
19
20
|
# File 'lib/softlayer/billing/invoice/next.rb', line 17
def get_pdf_detailed(document_create_date = nil)
message = {document_create_date: document_create_date}
request(:get_pdf_detailed, Softlayer::Base64Binary, message)
end
|