/* Options: Date: 2026-04-04 01:21:47 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetSettings.* //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="/settings") open class GetSettings : IReturn { open var SettingIds:ArrayList? = null companion object { private val responseType = GetSettingsResponse::class.java } override fun getResponseType(): Any? = GetSettings.responseType } @ApiResponse(Description="List of settings") open class GetSettingsResponse { open var Settings:ArrayList? = null open var ResponseStatus:ResponseStatus? = null } open class SettingModel { open var SettingId:UUID? = null open var SettingName:String? = null open var SettingValue:String? = null }