interface Paging { count: number; links: string[]; start: number; } export interface LinkedInCollectionResponse { data: { elements: T[]; $type: 'com.linkedin.restli.common.CollectionResponse'; entityUrn: string; paging: Paging; metadata?: M; }; included: I[]; } export {};