UNPKG

wallee

Version:
35 lines (34 loc) 1.71 kB
import type { ChargeFlowLevelPaymentLink } from './ChargeFlowLevelPaymentLink'; /** * * @export * @interface ChargeFlowLevelPaymentLinkListResponse */ export interface ChargeFlowLevelPaymentLinkListResponse { /** * An array containing the actual response objects. * @type {Array<ChargeFlowLevelPaymentLink>} * @memberof ChargeFlowLevelPaymentLinkListResponse */ readonly data?: Array<ChargeFlowLevelPaymentLink>; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof ChargeFlowLevelPaymentLinkListResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof ChargeFlowLevelPaymentLinkListResponse */ readonly limit?: number; } /** * Check if a given object implements the ChargeFlowLevelPaymentLinkListResponse interface. */ export declare function instanceOfChargeFlowLevelPaymentLinkListResponse(value: object): value is ChargeFlowLevelPaymentLinkListResponse; export declare function ChargeFlowLevelPaymentLinkListResponseFromJSON(json: any): ChargeFlowLevelPaymentLinkListResponse; export declare function ChargeFlowLevelPaymentLinkListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChargeFlowLevelPaymentLinkListResponse; export declare function ChargeFlowLevelPaymentLinkListResponseToJSON(json: any): ChargeFlowLevelPaymentLinkListResponse; export declare function ChargeFlowLevelPaymentLinkListResponseToJSONTyped(value?: Omit<ChargeFlowLevelPaymentLinkListResponse, 'data' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;