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