/* Options: Date: 2025-07-04 09:55:44 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetMyRecentlyOpenedDocuments.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { @Route(Path="/me/documents/recent", Verbs="GET") public static class GetMyRecentlyOpenedDocuments implements IReturn> { public Boolean OnlyStoredInSharePointOnline = null; public String ProgCode = null; public Integer PageSize = null; public Integer PageNumber = null; public Boolean isOnlyStoredInSharePointOnline() { return OnlyStoredInSharePointOnline; } public GetMyRecentlyOpenedDocuments setOnlyStoredInSharePointOnline(Boolean value) { this.OnlyStoredInSharePointOnline = value; return this; } public String getProgCode() { return ProgCode; } public GetMyRecentlyOpenedDocuments setProgCode(String value) { this.ProgCode = value; return this; } public Integer getPageSize() { return PageSize; } public GetMyRecentlyOpenedDocuments setPageSize(Integer value) { this.PageSize = value; return this; } public Integer getPageNumber() { return PageNumber; } public GetMyRecentlyOpenedDocuments setPageNumber(Integer value) { this.PageNumber = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } }