import type { SalesChannel } from './SalesChannel'; /** * * @export * @interface SalesChannelSearchResponse */ export interface SalesChannelSearchResponse { /** * An array containing the actual response objects. * @type {Array} * @memberof SalesChannelSearchResponse */ readonly data?: Array; /** * The number of skipped objects. * @type {number} * @memberof SalesChannelSearchResponse */ readonly offset?: number; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof SalesChannelSearchResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof SalesChannelSearchResponse */ readonly limit?: number; } /** * Check if a given object implements the SalesChannelSearchResponse interface. */ export declare function instanceOfSalesChannelSearchResponse(value: object): value is SalesChannelSearchResponse; export declare function SalesChannelSearchResponseFromJSON(json: any): SalesChannelSearchResponse; export declare function SalesChannelSearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SalesChannelSearchResponse; export declare function SalesChannelSearchResponseToJSON(json: any): SalesChannelSearchResponse; export declare function SalesChannelSearchResponseToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any;