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