/* Options: Date: 2025-07-04 10:55:53 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: GetContactPersonIDByRelationIDAndPersonID.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { public static class GetContactPersonIDByRelationIDAndPersonID implements IReturn { public Integer RelationID = null; public Integer PersonID = null; public Integer getRelationID() { return RelationID; } public GetContactPersonIDByRelationIDAndPersonID setRelationID(Integer value) { this.RelationID = value; return this; } public Integer getPersonID() { return PersonID; } public GetContactPersonIDByRelationIDAndPersonID setPersonID(Integer value) { this.PersonID = value; return this; } private static Object responseType = Integer.class; public Object getResponseType() { return responseType; } } }