/* Options: Date: 2026-05-14 02:41:22 Version: 10.05 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: WidgetConfigurationByIdQuery.* //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="/widget/configuration/{Id}", Verbs="GET") @ApiResponse(Description="Returned if the configuration was not found", StatusCode=404) // @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) @ValidateRequest(Validator="IsAuthenticated") open class WidgetConfigurationByIdQuery : IReturn, ICompany { /** * The company id, if empty will use the company id for the user you are logged in with. */ @ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.") override var CompanyId:UUID? = null /** * The widget configuration id (6-character NanoID). */ @ApiMember(Description="The widget configuration id (6-character NanoID).", IsRequired=true, ParameterType="path") open var Id:String? = null companion object { private val responseType = WidgetConfigurationResponse::class.java } override fun getResponseType(): Any? = WidgetConfigurationByIdQuery.responseType } open class WidgetConfigurationResponse { open var Id:String? = null open var CompanyId:UUID? = null open var Name:String? = null open var Slug:String? = null open var Description:String? = null open var Configuration:String? = null open var SchemaVersion:Int? = null open var CreatedDate:Date? = null open var UpdatedDate:Date? = null open var ResponseStatus:ResponseStatus? = null } interface ICompany { var CompanyId:UUID? }