CenturyLinkCloud / clc-java-sdk

Apache License 2.0
6 stars 4 forks source link

Implement possibilities to receive billing(invoice data) #137

Closed push1st1k closed 9 years ago

push1st1k commented 9 years ago

_As cloud user I want to have possibilities to receive invoice data_

Proposed signature is:


InvoiceData getInvoice(int year, int month, String pricingAccountAlias);

InvoiceData getInvoice(Date date, String pricingAccountAlias);

InvoiceData getInvoice(LocalDate localDate, String pricingAccountAlias);

InvoiceData getInvoice(Calendar calendar, String pricingAccountAlias);

InvoiceData getInvoice(int year, int month);

InvoiceData getInvoice(Date date);

InvoiceData getInvoice(LocalDate localDate);

InvoiceData getInvoice(Calendar calendar);