Function ChannelsApiFactory
- ChannelsApiFactory(
configuration?: Configuration,
basePath?: string,
axios?: AxiosInstance,
): {
getAllChannelFeatures(
options?: RawAxiosRequestConfig,
): AxiosPromise<ChannelFeatures[]>;
getChannelFeatures(
requestParameters: ChannelsApiGetChannelFeaturesRequest,
options?: RawAxiosRequestConfig,
): AxiosPromise<ChannelFeatures>;
getChannelItems(
requestParameters: ChannelsApiGetChannelItemsRequest,
options?: RawAxiosRequestConfig,
): AxiosPromise<BaseItemDtoQueryResult>;
getChannels(
requestParameters?: ChannelsApiGetChannelsRequest,
options?: RawAxiosRequestConfig,
): AxiosPromise<BaseItemDtoQueryResult>;
getLatestChannelItems(
requestParameters?: ChannelsApiGetLatestChannelItemsRequest,
options?: RawAxiosRequestConfig,
): AxiosPromise<BaseItemDtoQueryResult>;
} Parameters
Optional
configuration: ConfigurationOptional
basePath: stringOptional
axios: AxiosInstance
getAllChannelFeatures:function
- getAllChannelFeatures(
options?: RawAxiosRequestConfig,
): AxiosPromise<ChannelFeatures[]> Parameters
Optional
options: RawAxiosRequestConfig
getChannelFeatures:function
getChannelItems:function
getChannels:function
getLatestChannelItems:function
ChannelsApi - factory interface
Export