/* Options: Date: 2025-08-05 02:06:59 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CreateService.* //ExcludeTypes: //DefaultImports: */ export class PropertiesProxy { public Name: string; public PropertyType: string; public IsPersistent: boolean; public AllowSort: boolean; public AllowFilter: boolean; public IsKey: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class ContentsProxy { public Name: string; public ReadOnly: boolean; public UrlKey: string; public ClrType: string; public Access: string; public Properties: PropertiesProxy[]; public Children: ContentsProxy[]; public AutogenerateProperties: boolean; public parentId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class ServiceBaseRequest { public Route: string; public Name: string; public UrlName: string; public Enabled: boolean; public ApiKey: string; public AccessControlAllowOrigin: string; public AutogenerateTypes: boolean; public Access: string; public Types: ContentsProxy[]; public Protocol: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/apiservice/createService", "POST") export class CreateService extends ServiceBaseRequest { public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'CreateService'; } public getMethod() { return 'POST'; } public createResponse() {} }