/* Options: Date: 2026-04-02 03:43:18 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.imglobal.com/RestApi //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SetConfiguration.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/translations/configure", Verbs="POST") open class SetConfiguration : IReturn { open var Cron:String? = null companion object { private val responseType = SetConfigurationResponse::class.java } override fun getResponseType(): Any? = SetConfiguration.responseType } open class SetConfigurationResponse { open var NextSyncRun:String? = null }