fixup! Add BillingHistory service and List endpoint

This commit is contained in:
Ryan Butler 2020-03-02 10:45:56 -06:00
parent 33604ba0d1
commit 00e865c4e4
1 changed files with 1 additions and 2 deletions

View File

@ -46,8 +46,7 @@ func (b BillingHistory) String() string {
// List the Billing History for a customer
func (s *BillingHistoryServiceOp) List(ctx context.Context, opt *ListOptions) (*BillingHistory, *Response, error) {
path := billingHistoryBasePath
path, err := addOptions(path, opt)
path, err := addOptions(billingHistoryBasePath, opt)
if err != nil {
return nil, nil, err
}