Skip to content

Commit

Permalink
Fix AddStateTax return
Browse files Browse the repository at this point in the history
  • Loading branch information
seriallink committed Mar 11, 2020
1 parent e0e462f commit 6b358cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion statetax.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"time"
)

func (c *Client) AddStateTax(companyId string, stateTax *StateTax) (response CompaniesResponse, err error) {
func (c *Client) AddStateTax(companyId string, stateTax *StateTax) (response StateTaxResponse, err error) {
err = c.Post(fmt.Sprintf("companies/%s/statetaxes", companyId), Params{"stateTax": stateTax}, nil, &response)
return
}
Expand Down

0 comments on commit 6b358cc

Please sign in to comment.