/* Options: Date: 2024-07-03 12:35:16 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: NewsletterCustomerQuery.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/newsletter/customers", Verbs="GET") @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) @ValidateRequest(Validator="IsAuthenticated") open class NewsletterCustomerQuery : 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 /** * Search for customer has done minimum number of bookings. */ @ApiMember(Description="Search for customer has done minimum number of bookings.") var CustomerMinBookings:Int? = null /** * Search for customer has done maximum number of bookings. */ @ApiMember(Description="Search for customer has done maximum number of bookings.") var CustomerMaxBookings:Int? = null /** * Search for customer has booked any of the service in the list (List contain service id's). */ @ApiMember(Description="Search for customer has booked any of the service in the list (List contain service id's).") var BookedServiceIds:ArrayList? = null /** * Search interval From datetime . */ @ApiMember(Description="Search interval From datetime .") var From:Date? = null /** * Search interval To datetime . */ @ApiMember(Description="Search interval To datetime .") var To:Date? = null /** * The max number of records you want to collect */ @ApiMember(Description="The max number of records you want to collect") var MaxRecords:Int? = 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 = NewsletterCustomerQueryResponse::class.java } override fun getResponseType(): Any? = NewsletterCustomerQuery.responseType } open class NewsletterCustomerQueryResponse { var Id:UUID? = null var Customer:NewsletterCustomerInfo? = null } open interface ICompany { var CompanyId:UUID? } open class NewsletterCustomerInfo { var Id:UUID? = null var Firstname:String? = null var Lastname:String? = null var Email:String? = null var Phone:String? = null var FacebookUserName:String? = null var ImageUrl:Uri? = null }