/* Options: Date: 2024-07-03 12:53:15 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: UserAgreementQuery.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/users/agreement", Verbs="GET") @ApiResponse(Description="Returned if there is a validation error on the input parameters", StatusCode=400) // @ApiResponse(Description="Returned if the current user is not allowed to perform the action", StatusCode=401) @ValidateRequest(Validator="IsAuthenticated") open class UserAgreementQuery : IReturn { var UserId:UUID? = null companion object { private val responseType = UserAgreementQueryResponse::class.java } override fun getResponseType(): Any? = UserAgreementQuery.responseType } open class UserAgreementQueryResponse { var UserId:UUID? = null var AgreementId:UUID? = null var UserAgreementCreated:Date? = null var AgreedToLatest:Boolean? = null var Documents:ArrayList = ArrayList() var ResponseStatus:Object? = null }