/* Options: Date: 2026-06-04 03:33:57 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: CalendarContactViewRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/v1/Calendar/Contact/{ContactId}", Verbs="GET,OPTIONS") public static class CalendarContactViewRequest { public Integer ContactId = null; public Integer getContactId() { return ContactId; } public CalendarContactViewRequest setContactId(Integer value) { this.ContactId = value; return this; } } }