/* Options: Date: 2025-12-06 08:20:07 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: WebixGanttLinkChangeRequest.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.IO; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using System.Net; using CRM.AgencyPlatform.API.Internal; namespace CRM.AgencyPlatform.API.Internal { public partial class WebixGanttLink { public virtual int id { get; set; } public virtual int source { get; set; } public virtual int target { get; set; } public virtual int type { get; set; } } [Route("/v1/webix/gantt/links", "POST")] [Route("/v1/webix/gantt/links/{id}", "DELETE,PUT,OPTIONS")] public partial class WebixGanttLinkChangeRequest : WebixGanttLink, IReturn { } public partial class WebixGanttLinkResponse : WebixGanttLink { } }