/* Options: Date: 2025-08-05 02:40:47 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: MobileFormatPreviewDto.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/Sitefinity/mobile-formats/preview", Verbs="GET") open class MobileFormatPreviewDto : IReturn { var MobileFormatSettingName:String? = null var ContentTypeFullname:String? = null var ProviderName:String? = null var ItemUrlName:String? = null var Status:ContentLifecycleStatus? = null var SiteId:String? = null companion object { private val responseType = MobileFormatPreviewUrlDto::class.java } override fun getResponseType(): Any? = MobileFormatPreviewDto.responseType } open class MobileFormatPreviewUrlDto { var ItemTitle:String? = null var MobileFormatUrl:String? = null var MobileFormatPreviewUrl:String? = null var ErrorMessage:String? = null } enum class ContentLifecycleStatus(val value:Int) { Master(0), Temp(1), Live(2), Deleted(4), PartialTemp(8), }