/* Options: Date: 2024-12-15 19:45:05 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://staging-api.billiecart.com.au //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetFeatureFlagRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/features/{Name}", Verbs="GET") open class GetFeatureFlagRequest : GetOperationUnTenanted(), IReturn { var name:String? = null companion object { private val responseType = GetFeatureFlagResponse::class.java } override fun getResponseType(): Any? = GetFeatureFlagRequest.responseType } open class GetFeatureFlagResponse { var responseStatus:ResponseStatus? = null var flag:String? = null var isEnabled:Boolean? = null } open class GetOperationUnTenanted : IHasGetOptions, IGet { var embed:String? = null } open interface IHasGetOptions { var embed:String? }