/* Options: Date: 2025-12-06 05:26:35 Version: 8.60 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://geniuslink-api-zane.dev.platform.georiot.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: PostAutopilotOptionsRequest.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* import com.google.gson.annotations.* import com.google.gson.reflect.* @Route(Path="/v4/autopilot-options", Verbs="POST") // @Route(Path="/v3.5/autopilot-options", Verbs="POST") @DataContract open class PostAutopilotOptionsRequest : IReturn { @DataMember(Name="frequency") @SerializedName("frequency") open var frequency:AutopilotFrequency? = null @DataMember(Name="level") @SerializedName("level") open var level:AutopilotLevel? = null @DataMember(Name="enabled") @SerializedName("enabled") open var enabled:Boolean? = null @DataMember(Name="identifier") @SerializedName("identifier") open var identifier:String? = null @DataMember(Name="choicePageOptions") @SerializedName("choicePageOptions") open var choicePageOptions:HashMap? = null companion object { private val responseType = PostAutopilotOptionsResponse::class.java } override fun getResponseType(): Any? = PostAutopilotOptionsRequest.responseType } @DataContract open class PostAutopilotOptionsResponse { @DataMember(Name="responseStatus") @SerializedName("responseStatus") open var responseStatus:ResponseStatus? = null @DataMember(Name="success") @SerializedName("success") open var success:Boolean? = null } enum class AutopilotFrequency { Daily, Hourly, Once, } enum class AutopilotLevel { ShortLink, Group, Account, }