/* Options: Date: 2025-08-05 02:12:20 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: MobileFormatPreviewDto.* //ExcludeTypes: //DefaultImports: */ export enum ContentLifecycleStatus { Master = 0, Temp = 1, Live = 2, Deleted = 4, PartialTemp = 8, } export class MobileFormatPreviewUrlDto { public ItemTitle: string; public MobileFormatUrl: string; public MobileFormatPreviewUrl: string; public ErrorMessage: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/Sitefinity/mobile-formats/preview", "GET") export class MobileFormatPreviewDto implements IReturn { public MobileFormatSettingName: string; public ContentTypeFullname: string; public ProviderName: string; public ItemUrlName: string; public Status?: ContentLifecycleStatus; public SiteId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'MobileFormatPreviewDto'; } public getMethod() { return 'GET'; } public createResponse() { return new MobileFormatPreviewUrlDto(); } }