/* Options: Date: 2026-02-13 07:55:20 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://etc-api.vsmlab.vn //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: UpdateDocumentReferenceRequest.* //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="/document-reference/{Id}", Verbs="PUT") public static class UpdateDocumentReferenceRequest implements IReturn { public Integer id = null; public Integer parentDocumentId = null; public String title = null; public String documentCode = null; public String referenceUrl = null; public String description = null; public Integer getId() { return id; } public UpdateDocumentReferenceRequest setId(Integer value) { this.id = value; return this; } public Integer getParentDocumentId() { return parentDocumentId; } public UpdateDocumentReferenceRequest setParentDocumentId(Integer value) { this.parentDocumentId = value; return this; } public String getTitle() { return title; } public UpdateDocumentReferenceRequest setTitle(String value) { this.title = value; return this; } public String getDocumentCode() { return documentCode; } public UpdateDocumentReferenceRequest setDocumentCode(String value) { this.documentCode = value; return this; } public String getReferenceUrl() { return referenceUrl; } public UpdateDocumentReferenceRequest setReferenceUrl(String value) { this.referenceUrl = value; return this; } public String getDescription() { return description; } public UpdateDocumentReferenceRequest setDescription(String value) { this.description = value; return this; } private static Object responseType = DocumentReferences.class; public Object getResponseType() { return responseType; } } public static class DocumentReferences { public Integer id = null; public Integer parentDocumentId = null; public String title = null; public String documentCode = null; public String referenceUrl = null; public String description = null; public Integer getId() { return id; } public DocumentReferences setId(Integer value) { this.id = value; return this; } public Integer getParentDocumentId() { return parentDocumentId; } public DocumentReferences setParentDocumentId(Integer value) { this.parentDocumentId = value; return this; } public String getTitle() { return title; } public DocumentReferences setTitle(String value) { this.title = value; return this; } public String getDocumentCode() { return documentCode; } public DocumentReferences setDocumentCode(String value) { this.documentCode = value; return this; } public String getReferenceUrl() { return referenceUrl; } public DocumentReferences setReferenceUrl(String value) { this.referenceUrl = value; return this; } public String getDescription() { return description; } public DocumentReferences setDescription(String value) { this.description = value; return this; } } }