/* Options: Date: 2025-12-06 08:38:14 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SiteContentRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class SiteContent { public Id: number; public ContentHeader: string; public ContentBody: string; public BeginDate: string; public EndDate: string; public SortOrder: number; public Category: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/v1/SiteContent", "GET,PUT,POST,DELETE,OPTIONS") // @Route("/v1/SiteContent/{Category}", "GET,PUT,POST,DELETE,OPTIONS") // @Route("/v1/SiteContent/{Category}/{SortOrder}", "GET,PUT,DELETE,POST,OPTIONS") export class SiteContentRequest implements IReturn { public Category: string; public SortOrder: string; public SiteContent: SiteContent; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'SiteContentRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new SiteContent(); } }