We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WCObject.TaxClass.Delete accepts an int parameter, but the TaxClass class has no such field. Instead there is the string slug field.
WCObject.TaxClass.Delete
int
TaxClass
string slug
As per https://woocommerce.github.io/woocommerce-rest-api-docs/?shell#delete-a-tax-class in order to delete a tax class we need to specify a slug, which is a string, and not an int.
The text was updated successfully, but these errors were encountered:
Add extension method DeleteTaxClass for deleting TaxClass. #576
04a1374
Hi, this is fixed in version 0.8.3.
Sorry, something went wrong.
No branches or pull requests
WCObject.TaxClass.Delete
accepts anint
parameter, but theTaxClass
class has no such field. Instead there is thestring slug
field.As per https://woocommerce.github.io/woocommerce-rest-api-docs/?shell#delete-a-tax-class in order to delete a tax class we need to specify a slug, which is a string, and not an int.
The text was updated successfully, but these errors were encountered: