/* Options: Date: 2025-07-04 08:36:39 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: SetRecentlyOpenedDocument.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/me/documents/recent", Verbs="PUT") public static class SetRecentlyOpenedDocument implements IReturnVoid { public UUID DocumentID = null; public String ProgCode = null; public UUID getDocumentID() { return DocumentID; } public SetRecentlyOpenedDocument setDocumentID(UUID value) { this.DocumentID = value; return this; } public String getProgCode() { return ProgCode; } public SetRecentlyOpenedDocument setProgCode(String value) { this.ProgCode = value; return this; } } }