UNPKG

wallee

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