UNPKG

wallee

Version:
35 lines (34 loc) 1.35 kB
import type { RestCountry } from './RestCountry'; /** * * @export * @interface CountryListResponse */ export interface CountryListResponse { /** * An array containing the actual response objects. * @type {Array<RestCountry>} * @memberof CountryListResponse */ readonly data?: Array<RestCountry>; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof CountryListResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof CountryListResponse */ readonly limit?: number; } /** * Check if a given object implements the CountryListResponse interface. */ export declare function instanceOfCountryListResponse(value: object): value is CountryListResponse; export declare function CountryListResponseFromJSON(json: any): CountryListResponse; export declare function CountryListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CountryListResponse; export declare function CountryListResponseToJSON(json: any): CountryListResponse; export declare function CountryListResponseToJSONTyped(value?: Omit<CountryListResponse, 'data' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;