Listing_Fetcher::__construct( BigCommerceApiv3ApiChannelsApi $channels, WP_Term $channel_term, int $limit = 100 )

Summary

Listing_Fetcher constructor.


Parameters

$channels

(BigCommerceApiv3ApiChannelsApi) (Required) The Channels API connection to use for the import

$channel_term

(WP_Term) (Required)

$limit

(int) (Optional) Number of listing IDs to fetch per request

Default value: 100


Source

File: src/BigCommerce/Import/Processors/Listing_Fetcher.php

	public function __construct( ChannelsApi $channels, \WP_Term $channel_term, $limit = 100 ) {
		$this->limit        = $limit;
		$this->channel_term = $channel_term;
		$this->channels     = $channels;
	}

User Contributed Notes

You must log in before being able to contribute a note or feedback.