/**
  * @param StoreEntity $store
  * @param CatalogEntity $catalog
  */
 public function createCollection(StoreEntity $store, CatalogEntity $catalog)
 {
     $this->setSettings($store);
     $response = $this->client->createCustomCollection(['custom_collection' => ['title' => $catalog->getCatalogName()]]);
     $catalog->setShopifyCollectionId($response['custom_collection']['id']);
 }