/* Options: Date: 2024-10-18 04:13:39 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://digiofficeapigateway.deltares.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; } } }