public ShopifyResponse<ShopifyShop> GetShopInformation(ShopifyStoreAuth storeAuth)
{
XmlDocument retrievedShop = ShopifyGet((_protocol + storeAuth.StoreSubDomain + _domain + "/admin/shop.xml"),
HashString(_appAuth.Secret + storeAuth.StoreAuthToken));
return new ShopifyResponse<ShopifyShop>(retrievedShop);
}