wallee
Version:
TypeScript/JavaScript client for wallee
35 lines (34 loc) • 1.41 kB
TypeScript
import type { PaymentLink } from './PaymentLink';
/**
*
* @export
* @interface PaymentLinkListResponse
*/
export interface PaymentLinkListResponse {
/**
* An array containing the actual response objects.
* @type {Array<PaymentLink>}
* @memberof PaymentLinkListResponse
*/
readonly data?: Array<PaymentLink>;
/**
* Whether there are more objects available after this set. If false, there are no more objects to retrieve.
* @type {boolean}
* @memberof PaymentLinkListResponse
*/
readonly hasMore?: boolean;
/**
* The applied limit on the number of objects returned.
* @type {number}
* @memberof PaymentLinkListResponse
*/
readonly limit?: number;
}
/**
* Check if a given object implements the PaymentLinkListResponse interface.
*/
export declare function instanceOfPaymentLinkListResponse(value: object): value is PaymentLinkListResponse;
export declare function PaymentLinkListResponseFromJSON(json: any): PaymentLinkListResponse;
export declare function PaymentLinkListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaymentLinkListResponse;
export declare function PaymentLinkListResponseToJSON(json: any): PaymentLinkListResponse;
export declare function PaymentLinkListResponseToJSONTyped(value?: Omit<PaymentLinkListResponse, 'data' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;