/* Options: Date: 2025-08-23 04:57:41 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GDPRInactiveCustomerQuery.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/gdpr/customers/inactive", Verbs="GET") @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) @ValidateRequest(Validator="IsAuthenticated") open class GDPRInactiveCustomerQuery : 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.") var CompanyId:UUID? = null /** * Inactive customers since the date. Inactive means they haven't done any bookings since that date. */ @ApiMember(Description="Inactive customers since the date. Inactive means they haven't done any bookings since that date.", IsRequired=true) var InactiveSince:Date? = null /** * If you want to include the full customer information in the response */ @ApiMember(Description="If you want to include the full customer information in the response") var IncludeCustomerInformation:Boolean? = null companion object { private val responseType = InactiveCustomerResponse::class.java } override fun getResponseType(): Any? = GDPRInactiveCustomerQuery.responseType } open class InactiveCustomerResponse { var Id:UUID? = null var Customer:InactiveCustomerInfo? = null } open interface ICompany { var CompanyId:UUID? } open class InactiveCustomerInfo { /** * The unique identifier of the customer */ @ApiMember(Description="The unique identifier of the customer") var Id:UUID? = null /** * The customer's first name */ @ApiMember(Description="The customer's first name") var Firstname:String? = null /** * The customer's last name */ @ApiMember(Description="The customer's last name") var Lastname:String? = null /** * The customer's email address */ @ApiMember(Description="The customer's email address") var Email:String? = null /** * The customer's phone number */ @ApiMember(Description="The customer's phone number") var Phone:String? = null /** * The customer's Facebook username */ @ApiMember(Description="The customer's Facebook username") var FacebookUserName:String? = null /** * URL to the customer's profile image */ @ApiMember(Description="URL to the customer's profile image") var ImageUrl:Uri? = null }