/* Options: Date: 2025-08-05 02:08:21 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: ToggleMobileFormatsContentTypesDto.* //ExcludeTypes: //DefaultImports: */ export class MobileFormatContentTypeDto { public ContentTypeDisplayName: string; public ContentTypeName: string; public ContentTypeFullname: string; public Active: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/Sitefinity/mobile-formats/content-types/toggle", "PUT") export class ToggleMobileFormatsContentTypesDto { public SiteId: string; public MobileFormatContentTypes: MobileFormatContentTypeDto[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ToggleMobileFormatsContentTypesDto'; } public getMethod() { return 'PUT'; } public createResponse() {} }