/* Options: Date: 2025-07-04 09:30:13 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetMyRecentlyOpenedDocuments.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } // @Route("/me/documents/recent", "GET") export class GetMyRecentlyOpenedDocuments implements IReturn> { public OnlyStoredInSharePointOnline: boolean; public ProgCode: string; public PageSize: number; public PageNumber: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetMyRecentlyOpenedDocuments'; } public getMethod() { return 'GET'; } public createResponse() { return new ObservableCollection(); } }