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