/* Options: Date: 2025-08-05 02:04:04 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: MobileFormatPreviewDto.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/Sitefinity/mobile-formats/preview", Verbs="GET") public static class MobileFormatPreviewDto implements IReturn { public String MobileFormatSettingName = null; public String ContentTypeFullname = null; public String ProviderName = null; public String ItemUrlName = null; public ContentLifecycleStatus Status = null; public String SiteId = null; public String getMobileFormatSettingName() { return MobileFormatSettingName; } public MobileFormatPreviewDto setMobileFormatSettingName(String value) { this.MobileFormatSettingName = value; return this; } public String getContentTypeFullname() { return ContentTypeFullname; } public MobileFormatPreviewDto setContentTypeFullname(String value) { this.ContentTypeFullname = value; return this; } public String getProviderName() { return ProviderName; } public MobileFormatPreviewDto setProviderName(String value) { this.ProviderName = value; return this; } public String getItemUrlName() { return ItemUrlName; } public MobileFormatPreviewDto setItemUrlName(String value) { this.ItemUrlName = value; return this; } public ContentLifecycleStatus getStatus() { return Status; } public MobileFormatPreviewDto setStatus(ContentLifecycleStatus value) { this.Status = value; return this; } public String getSiteId() { return SiteId; } public MobileFormatPreviewDto setSiteId(String value) { this.SiteId = value; return this; } private static Object responseType = MobileFormatPreviewUrlDto.class; public Object getResponseType() { return responseType; } } public static class MobileFormatPreviewUrlDto { public String ItemTitle = null; public String MobileFormatUrl = null; public String MobileFormatPreviewUrl = null; public String ErrorMessage = null; public String getItemTitle() { return ItemTitle; } public MobileFormatPreviewUrlDto setItemTitle(String value) { this.ItemTitle = value; return this; } public String getMobileFormatUrl() { return MobileFormatUrl; } public MobileFormatPreviewUrlDto setMobileFormatUrl(String value) { this.MobileFormatUrl = value; return this; } public String getMobileFormatPreviewUrl() { return MobileFormatPreviewUrl; } public MobileFormatPreviewUrlDto setMobileFormatPreviewUrl(String value) { this.MobileFormatPreviewUrl = value; return this; } public String getErrorMessage() { return ErrorMessage; } public MobileFormatPreviewUrlDto setErrorMessage(String value) { this.ErrorMessage = value; return this; } } public static enum ContentLifecycleStatus { Master(0), Temp(1), Live(2), Deleted(4), PartialTemp(8); private final int value; ContentLifecycleStatus(final int intValue) { value = intValue; } public int getValue() { return value; } } }