/* Options: Date: 2025-09-15 14:34:44 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bookmore.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GDPRInactiveCustomerQuery.* //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="/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.") override 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) open 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") open var IncludeCustomerInformation:Boolean? = null companion object { private val responseType = InactiveCustomerResponse::class.java } override fun getResponseType(): Any? = GDPRInactiveCustomerQuery.responseType } open class InactiveCustomerResponse { open var Id:UUID? = null open var Customer:InactiveCustomerInfo? = null } interface ICompany { var CompanyId:UUID? } open class InactiveCustomerInfo { /** * The unique identifier of the customer */ @ApiMember(Description="The unique identifier of the customer") open var Id:UUID? = null /** * The customer's first name */ @ApiMember(Description="The customer's first name") open var Firstname:String? = null /** * The customer's last name */ @ApiMember(Description="The customer's last name") open var Lastname:String? = null /** * The customer's email address */ @ApiMember(Description="The customer's email address") open var Email:String? = null /** * The customer's phone number */ @ApiMember(Description="The customer's phone number") open var Phone:String? = null /** * The customer's Facebook username */ @ApiMember(Description="The customer's Facebook username") open var FacebookUserName:String? = null /** * URL to the customer's profile image */ @ApiMember(Description="URL to the customer's profile image") open var ImageUrl:Uri? = null }