WooCommerceAPI constructor
Implementation
WooCommerceAPI(url, consumerKey, consumerSecret){
this.url = url;
this.consumerKey = consumerKey;
this.consumerSecret = consumerSecret;
if(this.url.startsWith("https")){
this.isHttps = true;
} else {
this.isHttps = false;
}
}