import { type PaymentLinkData } from '../../data/paymentLinks/data'; import { type IdempotencyParameter, type PaginationParameters, type TestModeParameter, type ThrottlingParameter } from '../../types/parameters'; import type PickOptional from '../../types/PickOptional'; type ContextParameters = TestModeParameter; export type CreateParameters = Pick & PickOptional & ContextParameters & IdempotencyParameter; export type GetParameters = ContextParameters; export type PageParameters = ContextParameters & PaginationParameters & { profileId?: string; }; export type UpdateParameters = Pick & PickOptional & ContextParameters; export type IterateParameters = Omit & ThrottlingParameter; export {};