wallee
Version:
TypeScript/JavaScript client for wallee
41 lines (40 loc) • 1.81 kB
TypeScript
import type { SubscriptionAffiliate } from './SubscriptionAffiliate';
/**
*
* @export
* @interface SubscriptionAffiliateSearchResponse
*/
export interface SubscriptionAffiliateSearchResponse {
/**
* An array containing the actual response objects.
* @type {Array<SubscriptionAffiliate>}
* @memberof SubscriptionAffiliateSearchResponse
*/
readonly data?: Array<SubscriptionAffiliate>;
/**
* 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<SubscriptionAffiliateSearchResponse, 'data' | 'offset' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;