/* Options: Date: 2025-08-05 02:03:04 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: ChildItemMessage.* //ExcludeTypes: //DefaultImports: */ // @Route("/sitefinity/related-data/parent-items", "GET") export class ChildItemMessage { public ChildItemId: string; public ChildItemType: string; public ChildProviderName: string; public Filter: string; public Order: string; public Skip: number; public Take: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ChildItemMessage'; } public getMethod() { return 'GET'; } public createResponse() {} }