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