/* Options: Date: 2025-04-05 01:28:35 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: AdminIncentivesQuery.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.* import java.util.* import net.servicestack.client.* import com.google.gson.annotations.* import com.google.gson.reflect.* @Route(Path="/superadmin/incentives/", Verbs="GET") @ValidateRequest(Validator="IsAuthenticated") @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) open class AdminIncentivesQuery : QueryDb>(), IReturn>> { var Id:Int? = null var CompanyId:UUID? = null var ValidFrom:Date? = null var ValidTo:Date? = null var ActionId:Int? = null var Active:Boolean? = null var IncludeCriteria:Boolean? = null var IncludeCompanies:Boolean? = null var IncludeAction:Boolean? = null companion object { private val responseType = object : TypeToken>>(){}.type } override fun getResponseType(): Any? = AdminIncentivesQuery.responseType } @DataContract open class QueryResponse { @DataMember(Order=1) var Offset:Int? = null @DataMember(Order=2) var Total:Int? = null @DataMember(Order=3) var Results:ArrayList> = ArrayList>() @DataMember(Order=4) var Meta:HashMap = HashMap() @DataMember(Order=5) var ResponseStatus:ResponseStatus? = null } open class QueryDb : QueryBase() { } open class AccessKeyTypeResponse { var Id:Int? = null var KeyType:String? = null var Description:String? = null } open class BillingMethodQueryResponse { /** * The billing method id */ @ApiMember(Description="The billing method id") var Id:Int? = null /** * The billing method name */ @ApiMember(Description="The billing method name") var Name:String? = null /** * The billing method description */ @ApiMember(Description="The billing method description") var Description:String? = null /** * The billing method is valid for the following countries */ @ApiMember(Description="The billing method is valid for the following countries") var Countries:ArrayList = ArrayList() } open class CompanyInvoiceQueryResponse { /** * The company id */ @ApiMember(Description="The company id") var CompanyId:UUID? = null /** * The invoice id */ @ApiMember(Description="The invoice id") var Id:Int? = null /** * Status of the invoice */ @ApiMember(Description="Status of the invoice") var StatusId:Int? = null /** * Date of the invoice */ @ApiMember(Description="Date of the invoice") var InvoiceDate:Date? = null /** * Due date of the invoice */ @ApiMember(Description="Due date of the invoice") var DueDate:Date? = null /** * What start date of the invoice period */ @ApiMember(Description="What start date of the invoice period") var PeriodFrom:Date? = null /** * What end date of the invoice period */ @ApiMember(Description="What end date of the invoice period") var PeriodTo:Date? = null /** * The total amount of the invoice */ @ApiMember(Description="The total amount of the invoice") var TotalAmount:Double? = null /** * The rounding of the total amount */ @ApiMember(Description="The rounding of the total amount") var Rounding:Double? = null /** * The VAT */ @ApiMember(Description="The VAT") var VAT:BigDecimal? = null /** * The VAT registration number */ @ApiMember(Description="The VAT registration number") var VATRegistrationNo:String? = null /** * The company registration number */ @ApiMember(Description="The company registration number") var RegistrationNumber:String? = null /** * The company name */ @ApiMember(Description="The company name") var CompanyName:String? = null /** * The company owner, used for grouping invoices per CompanyOwner */ @ApiMember(Description="The company owner, used for grouping invoices per CompanyOwner") var CompanyOwner:CompanyOwnerResponse? = null /** * The company type */ @ApiMember(Description="The company type") var CompanyType:CompanyTypeResponse? = null /** * The company contact person */ @ApiMember(Description="The company contact person") var ContactPerson:String? = null /** * The company street */ @ApiMember(Description="The company street") var Street1:String? = null /** * The company street */ @ApiMember(Description="The company street") var Street2:String? = null /** * The company city */ @ApiMember(Description="The company city") var City:String? = null /** * The company zip */ @ApiMember(Description="The company zip") var Zip:String? = null /** * The company country */ @ApiMember(Description="The company country") var CountryId:String? = null /** * The invoice currency */ @ApiMember(Description="The invoice currency") var CurrencyId:String? = null /** * The invoice created date */ @ApiMember(Description="The invoice created date") var Created:Date? = null /** * The invoice updated date */ @ApiMember(Description="The invoice updated date") var Updated:Date? = null /** * The reference to promikbook invoice */ @ApiMember(Description="The reference to promikbook invoice") var PromikBookInvoiceId:Int? = null /** * Any invoice message */ @ApiMember(Description="Any invoice message") var Message:String? = null /** * The currency information */ @ApiMember(Description="The currency information") var CurrencyInfo:CurrencyInfoResponse? = null /** * The currency information */ @ApiMember(Description="The currency information") var InvoiceStatus:InvoiceStatusResponse? = null /** * The currency information */ @ApiMember(Description="The currency information") var InvoiceLines:ArrayList = ArrayList() /** * Billing information */ @ApiMember(Description="Billing information") var BillingInformation:BillingInformationResponse? = null var ExternalReferences:ArrayList = ArrayList() } open class BookingStatusQueryResponse { var Id:Int? = null var Name:String? = null var Description:String? = null var Icon:String? = null var Color:String? = null } open class GroupedBookingQueryResponse { var CompanyId:UUID? = null var Date:Date? = null var Bookings:ArrayList = ArrayList() } open class CategoryQueryResponse { var Id:Int? = null var Name:String? = null var Description:String? = null var Header:String? = null var ImageUrl:Uri? = null var Active:Boolean? = null var ResponseStatus:ResponseStatus? = null } open class CompanyTypeQueryResponse { var Id:Int? = null var Name:String? = null var Description:String? = null } open class Country : BaseModel() { @References(Currency.class) var CurrencyId:String? = null var CurrencyInfo:Currency? = null @Required() var Name:String? = null var Culture:String? = null var TimeZone:String? = null var ModifiedDate:Date? = null @Required() var Id:String? = null } open class CountryQueryResponse { var Id:String? = null var Name:String? = null var Description:String? = null var ResponseStatus:ResponseStatus? = null } open class Currency : BaseModel() { @Required() var Name:String? = null @Required() var CurrencySign:String? = null @Required() var Active:Boolean? = null var ModifiedDate:Date? = null @Required() var Id:String? = null } open class CurrencyQueryResponse { var Id:String? = null var Name:String? = null var Description:String? = null var CurrencySign:String? = null var Active:Boolean? = null var ResponseStatus:ResponseStatus? = null } open class GeoDataCitiesQueryResponse { var Id:UUID? = null var City:String? = null var Longitude:String? = null var Latitude:String? = null var Country:String? = null var Iso2:String? = null var Admin:String? = null var Capital:String? = null var Population:Int? = null var PopulationProper:Int? = null } open class Incentive : BaseModel() { var Id:Int? = null var Heading:String? = null var StorageUrl:String? = null var SuccessButtonText:String? = null var Active:Boolean? = null var ActionId:Int? = null var Frequency:IncentiveRecurrenceFrequency? = null var RecurrenceInterval:Long? = null var InitialDelayInSeconds:Int? = null var MaxDisplayCount:Int? = null var ValidFrom:Date? = null var ValidTo:Date? = null var CreatedDate:Date? = null var ModifiedDate:Date? = null var AppliesToAllCompanies:Boolean? = null var Payload:String? = null var Companies:ArrayList = ArrayList() var Criteria:ArrayList = ArrayList() @Ignore() var Action:IncentiveAction? = null } enum class IncentiveRecurrenceFrequency(val value:Int) { OneTime(1), Weekly(2), Monthly(3), } open class LicenseTypeQueryResponse { /** * The license type id */ @ApiMember(Description="The license type id") var Id:Int? = null /** * The license type name */ @ApiMember(Description="The license type name") var Name:String? = null /** * The license type description */ @ApiMember(Description="The license type description") var Description:String? = null /** * If the license type is not a standard license but instead an extra license option. An example would be sending new letter license. */ @ApiMember(Description="If the license type is not a standard license but instead an extra license option. An example would be sending new letter license.") var IsExtraLicenseOption:Boolean? = null /** * The period of notice for the license in days. */ @ApiMember(Description="The period of notice for the license in days.") var PeriodOfNoticeDays:Int? = null /** * The license items for the license type */ @ApiMember(Description="The license items for the license type") var Items:ArrayList = ArrayList() /** * The license prices in each country for the license type */ @ApiMember(Description="The license prices in each country for the license type") var Prices:ArrayList = ArrayList() } open class LicenseInformationQueryResponse { var Name:String? = null var Description:String? = null var Url:Uri? = null var FreeEdition:Boolean? = null var StartEdition:Boolean? = null var ProEdition:Boolean? = null var SmartEdition:Boolean? = null var EnterpriseEdition:Boolean? = null var FreeEditionValue:String? = null var StartEditionValue:String? = null var ProEditionValue:String? = null var SmartEditionValue:String? = null var EnterpriseEditionValue:String? = null var LicenseInformationTypeId:Int? = null } open class LicensePlanQueryResponse { var Id:Int? = null var VossPlanId:UUID? = null var Name:String? = null var Description:String? = null var VossPlan:VossPlanResponse? = null var PlanLength:Int? = null var PlanLengthUnit:LengthUnit? = null var UpdatedDate:Date? = null var CreatedDate:Date? = null } open class LicenseInformationTypeQueryResponse { /** * The license information type id */ @ApiMember(Description="The license information type id") var Id:Int? = null /** * The license information type name */ @ApiMember(Description="The license information type name") var Name:String? = null } open class DashboardMessageQueryResponse { /** * The message id */ @ApiMember(Description="The message id") var Id:Int? = null /** * The message title. */ @ApiMember(Description="The message title.") var Title:String? = null /** * The message body. */ @ApiMember(Description="The message body.") var Body:String? = null /** * If the message is important. */ @ApiMember(Description="If the message is important.") var Important:Boolean? = null /** * If the message visible from date. */ @ApiMember(Description="If the message visible from date.") var VisibleFrom:Date? = null /** * If the message visible to date. */ @ApiMember(Description="If the message visible to date.") var VisibleTo:Date? = null /** * If the message created date. */ @ApiMember(Description="If the message created date.") var Created:Date? = null /** * If the message type id. */ @ApiMember(Description="If the message type id.") var MessageTypeId:Int? = null /** * If the message is connected to a support case. */ @ApiMember(Description="If the message is connected to a support case.") var SupportCaseId:Int? = null /** * If the message type information. */ @ApiMember(Description="If the message type information.") var MessageType:DasboardMessageTypeResponse? = null } open class MessageTypeQueryResponse { /** * The message type id */ @ApiMember(Description="The message type id") var Id:Int? = null /** * The message type name. */ @ApiMember(Description="The message type name.") var Name:String? = null /** * The message type description. */ @ApiMember(Description="The message type description.") var Description:String? = null /** * The maximum number of charachters that can be entered into message body using this type. */ @ApiMember(Description="The maximum number of charachters that can be entered into message body using this type.") var MaxCharacters:Int? = null /** * The default text that is always included when sending messages of this type. */ @ApiMember(Description="The default text that is always included when sending messages of this type.") var DefaultText:String? = null /** * The send method for this type. 1 = Email, 2 = SMS. */ @ApiMember(Description="The send method for this type. 1 = Email, 2 = SMS.") var SendMethodId:Int? = null } open class FieldTranslationResponse { /** * The field translation id */ @ApiMember(Description="The field translation id") var Id:Int? = null /** * The field translation code. */ @ApiMember(Description="The field translation code.") var Code:String? = null /** * The field translation name. */ @ApiMember(Description="The field translation name.") var Name:String? = null /** * The field translation description. */ @ApiMember(Description="The field translation description.") var Description:String? = null /** * The field translation group. */ @ApiMember(Description="The field translation group.") var Group:String? = null } open class MessageSendMethodQueryResponse { /** * The send method id */ @ApiMember(Description="The send method id") var Id:Int? = null /** * The send method name. */ @ApiMember(Description="The send method name.") var Name:String? = null /** * The send method description. */ @ApiMember(Description="The send method description.") var Description:String? = null } open class NewsletterSendMethodQueryResponse { /** * The send method id */ @ApiMember(Description="The send method id") var Id:Int? = null /** * The send method name. */ @ApiMember(Description="The send method name.") var Name:String? = null /** * The send method description. */ @ApiMember(Description="The send method description.") var Description:String? = null } open class NewsletterFieldTranslationResponse { /** * The field translation id */ @ApiMember(Description="The field translation id") var Id:Int? = null /** * The field translation code. */ @ApiMember(Description="The field translation code.") var Code:String? = null /** * The field translation name. */ @ApiMember(Description="The field translation name.") var Name:String? = null /** * The field translation description. */ @ApiMember(Description="The field translation description.") var Description:String? = null /** * The field translation group. */ @ApiMember(Description="The field translation group.") var Group:String? = null } open class NewsletterEmailTemplatesQueryResponse { /** * The email template id */ @ApiMember(Description="The email template id") var Id:Int? = null /** * The email template name. */ @ApiMember(Description="The email template name.") var Name:String? = null /** * The email template description. */ @ApiMember(Description="The email template description.") var Description:String? = null /** * The email template html content. */ @ApiMember(Description="The email template html content.") var Body:String? = null } open class RatingReviewResponse { /** * The title for the review */ @ApiMember(Description="The title for the review") var Title:String? = null /** * The description for the review */ @ApiMember(Description="The description for the review") var Description:String? = null /** * The rating score */ @ApiMember(Description="The rating score") var RatingScore:Int? = null /** * The review author */ @ApiMember(Description="The review author") var Author:String? = null /** * The created date */ @ApiMember(Description="The created date") var Created:Date? = null /** * The review answer from the company */ @ApiMember(Description="The review answer from the company") var ReviewAnswer:String? = null } open class RebateCodeTransactionQueryResponse { var Id:Int? = null var CompanyId:UUID? = null var Note:String? = null var RebateCodeId:Int? = null var RebateCodeSign:String? = null var RebateCodeTypeId:Int? = null var RebateCodeTypeName:String? = null var Amount:Double? = null var Usage:String? = null var BookingId:Int? = null var UpdatedDate:Date? = null var CreatedDate:Date? = null var Service:RebateCodeServiceResponse? = null var Customer:RebateCodeCustomerResponse? = null var PriceSign:String? = null } open class ExternalReference : BaseModel() { @Required() var CompanyId:UUID? = null @Required() var Id:UUID? = null @Required() var OwnerId:UUID? = null @Required() var ReferenceType:String? = null var ExternalData:String? = null var CreatedBy:String? = null @Required() var Updated:Date? = null @Required() var Created:Date? = null var ModifiedDate:Date? = null } open class BookingReportFieldTranslationResponse { /** * The field translation id */ @ApiMember(Description="The field translation id") var Id:Int? = null /** * The field translation code. */ @ApiMember(Description="The field translation code.") var Code:String? = null /** * The field translation name. */ @ApiMember(Description="The field translation name.") var Name:String? = null /** * The field translation description. */ @ApiMember(Description="The field translation description.") var Description:String? = null /** * The field translation group. */ @ApiMember(Description="The field translation group.") var Group:String? = null } open class GroupedServiceQueryResponse { var Group:String? = null var SortOrder:Int? = null var Items:ArrayList = ArrayList() var ResponseStatus:ResponseStatus? = null } open class PriceViewTypeQueryResponse { var Id:Int? = null var Name:String? = null var Description:String? = null } open class SupportCaseStatusResponse { /** * The status id */ @ApiMember(Description="The status id") var Id:Int? = null /** * The status name */ @ApiMember(Description="The status name") var Name:String? = null /** * The status description */ @ApiMember(Description="The status description") var Description:String? = null /** * The status icon */ @ApiMember(Description="The status icon") var Icon:String? = null /** * The status color */ @ApiMember(Description="The status color") var Color:String? = null } open class SupportCaseTypeResponse { /** * The type id */ @ApiMember(Description="The type id") var Id:Int? = null /** * The type name */ @ApiMember(Description="The type name") var Name:String? = null /** * The type description */ @ApiMember(Description="The type description") var Description:String? = null } open class SupportCaseAreaResponse { /** * The area id */ @ApiMember(Description="The area id") var Id:Int? = null /** * The area name */ @ApiMember(Description="The area name") var Name:String? = null /** * The area description */ @ApiMember(Description="The area description") var Description:String? = null } open class TrialQueryResponse { var Id:Int? = null var Name:String? = null var TrialDays:Int? = null } open class IncentiveCriteria : BaseModel() { var Id:Int? = null var IncentiveId:Int? = null var CriteriaType:CriteriaType? = null var Value:String? = null var InvertCondition:Boolean? = null var CreatedDate:Date? = null } open class RebateCodeServiceResponse { var Id:Int? = null var Name:String? = null var Description:String? = null var Active:Boolean? = null } open class RebateCodeCustomerResponse { var Id:UUID? = null var Firstname:String? = null var Lastname:String? = null var Email:String? = null var Phone:String? = null var ImageUrl:String? = null } open class VossPlanResponse { var Id:UUID? = null var Name:String? = null var LengthUnit:String? = null var Length:String? = null } @DataContract open class QueryBase { /** * Skip over a given number of elements in a sequence and then return the remainder. Use this when you need paging.

Example:
?skip=10&orderBy=Id */ @DataMember(Order=1) var Skip:Int? = null /** * Return a given number of elements in a sequence and then skip over the remainder. Use this when you need paging.

Example:
?take=20 */ @DataMember(Order=2) var Take:Int? = null /** * Comma separated list of fields to order by. Prefix the field name with a minus if you wan't to invert the sort for that field.

Example:
?orderBy=Id,-Age,FirstName */ @DataMember(Order=3) var OrderBy:String? = null /** * Comma separated list of fields to order by in descending order. Prefix the field name with a minus if you wan't to invert the sort for that field.

Example:
?orderByDesc=Id,-Age,FirstName */ @DataMember(Order=4) var OrderByDesc:String? = null /** * Include any of the aggregates AVG, COUNT, FIRST, LAST, MAX, MIN, SUM in your result set. The results will be returned in the meta field.

Example:
?include=COUNT(*) as Total

or multiple fields with
?include=Count(*) Total, Min(Age), AVG(Age) AverageAge

or unique with
?include=COUNT(DISTINCT LivingStatus) as UniqueStatus */ @DataMember(Order=5) var Include:String? = null @DataMember(Order=6) var Fields:String? = null @DataMember(Order=7) var Meta:HashMap = HashMap() } open class BaseModel { } open class CompanyOwnerResponse { /** * Company owner id */ @ApiMember(Description="Company owner id") var Id:Int? = null /** * Company owner name */ @ApiMember(Description="Company owner name") var Name:String? = null } open class CompanyTypeResponse { /** * Company type id */ @ApiMember(Description="Company type id") var Id:Int? = null /** * Company type name */ @ApiMember(Description="Company type name") var Name:String? = null } open class CurrencyInfoResponse { /** * The currency id */ @ApiMember(Description="The currency id") var Id:String? = null /** * The currency id */ @ApiMember(Description="The currency id") var Name:String? = null /** * The currency id */ @ApiMember(Description="The currency id") var CurrencySign:String? = null } open class InvoiceStatusResponse { /** * The status id */ @ApiMember(Description="The status id") var Id:Int? = null /** * The status name */ @ApiMember(Description="The status name") var Name:String? = null /** * The status description */ @ApiMember(Description="The status description") var Description:String? = null } open class InvoiceLineResponse { /** * The invoice id */ @ApiMember(Description="The invoice id") var InvoiceId:Int? = null /** * The invoice line id */ @ApiMember(Description="The invoice line id") var Id:Int? = null /** * The invoice line period from date */ @ApiMember(Description="The invoice line period from date") var PeriodFrom:Date? = null /** * The invoice line period to date */ @ApiMember(Description="The invoice line period to date") var PeriodTo:Date? = null /** * The invoice line article number */ @ApiMember(Description="The invoice line article number") var ArticleNumber:Int? = null /** * The invoice line article name */ @ApiMember(Description="The invoice line article name") var ArticleName:String? = null /** * The invoice line article description */ @ApiMember(Description="The invoice line article description") var ArticleDescription:String? = null /** * The invoice line quantity */ @ApiMember(Description="The invoice line quantity") var Quantity:Int? = null /** * The invoice line unit price */ @ApiMember(Description="The invoice line unit price") var UnitPrice:Double? = null /** * The invoice line sub total */ @ApiMember(Description="The invoice line sub total") var SubTotal:Double? = null /** * The invoice line rebate in percent */ @ApiMember(Description="The invoice line rebate in percent") var Rebate:Int? = null /** * The invoice line updated date */ @ApiMember(Description="The invoice line updated date") var Updated:Date? = null /** * The invoice line created date */ @ApiMember(Description="The invoice line created date") var Created:Date? = null } open class IncentiveCompanyRelation : BaseModel() { var Id:Long? = null var CompanyId:UUID? = null var IncentiveId:Int? = null var CreatedDate:Date? = null } open class IncentiveAction : BaseModel() { var Id:Int? = null var ActionType:IncentiveActionType? = null var Page:String? = null var Segment:String? = null var Element:String? = null var LicenseTypeId:Int? = null } enum class CriteriaType { LicenseAvailability, SmsActivation, EAccountingActivation, CodeLockActivation, SocialActivation, OnlinePaymentActivation, FollowUpMessageActivation, RatingActivation, } open class LicenseItemsResponse { var Id:Int? = null var Name:String? = null var AllowedItems:Int? = null } open class LicensePriceResponse { var LicenseTypeId:Int? = null var CountryId:String? = null var Price:Int? = null var Country:Country? = null var LicensePlanId:Int? = null } enum class LengthUnit(val value:Int) { Week(1), Month(2), Year(3), } open class DasboardMessageTypeResponse { /** * The message type id */ @ApiMember(Description="The message type id") var Id:Int? = null /** * The message type name */ @ApiMember(Description="The message type name") var Name:String? = null /** * The message type description */ @ApiMember(Description="The message type description") var Description:String? = null /** * The message type image */ @ApiMember(Description="The message type image") var ImageUrl:String? = null /** * If the message type is a application message */ @ApiMember(Description="If the message type is a application message") var ApplicationMessage:Boolean? = null /** * The message type icon */ @ApiMember(Description="The message type icon") var Icon:String? = null /** * The message type color */ @ApiMember(Description="The message type color") var Color:String? = null } enum class IncentiveActionType(val value:Int) { Upgrade(1), AddOn(2), Information(3), } enum class Currency(val value:Int) { Sek(1), Eur(2), } open class BillingInformationResponse { /** * The company id. */ @ApiMember(Description="The company id.") var CompanyId:UUID? = null /** * The prefered billing method. */ @ApiMember(Description="The prefered billing method.", IsRequired=true) var BillingMethodId:Int? = null /** * The prefered billing method. */ @ApiMember(Description="The prefered billing method.", IsRequired=true) var LicensePlanId:Int? = null /** * The name that should be printed on the billing information, normally this would be your company name. */ @ApiMember(Description="The name that should be printed on the billing information, normally this would be your company name.") var Name:String? = null /** * If you want to add the attention to the billing address. */ @ApiMember(Description="If you want to add the attention to the billing address.") var Attention:String? = null /** * The street for the billing adress. This is required when having postal invoice as billing method. */ @ApiMember(Description="The street for the billing adress. This is required when having postal invoice as billing method.") var Street1:String? = null /** * The street for the billing adress. */ @ApiMember(Description="The street for the billing adress.") var Street2:String? = null /** * The zip code (postal code) for the billing adress. This is required when having postal invoice as billing method. */ @ApiMember(Description="The zip code (postal code) for the billing adress. This is required when having postal invoice as billing method.") var ZipCode:String? = null /** * The city for the billing adress. This is required when having postal invoice as billing method. */ @ApiMember(Description="The city for the billing adress. This is required when having postal invoice as billing method.") var City:String? = null /** * The country for the billing adress. This is required when having postal invoice as billing method. */ @ApiMember(Description="The country for the billing adress. This is required when having postal invoice as billing method.") var CountryId:String? = null /** * The billing email. This is required when having email invoice as billing method. */ @ApiMember(Description="The billing email. This is required when having email invoice as billing method.") var Email:String? = null /** * The company global location number. */ @ApiMember(Description="The company global location number.") var GLN:String? = null /** * You're internal rereference. */ @ApiMember(Description="You're internal rereference.") var ReferenceLine1:String? = null /** * You're internal rereference. */ @ApiMember(Description="You're internal rereference.") var ReferenceLine2:String? = null /** * The billing payment terms in days. This is default 15 days. */ @ApiMember(Description="The billing payment terms in days. This is default 15 days.") var PaymentTermsDays:Int? = null /** * The company vat registration number. */ @ApiMember(Description="The company vat registration number.") var VatRegistrationNumber:String? = null /** * The billing method options to choose from */ @ApiMember(Description="The billing method options to choose from") var BillingMethodOptions:ArrayList = ArrayList() } open class BookingQueryResponse { var Id:Int? = null var CompanyId:UUID? = null var From:Date? = null var To:Date? = null var Status:BookingStatusEnum? = null var StatusId:Int? = null var StatusName:String? = null var StatusInfo:BookingStatusQueryResponse? = null var SendEmailReminder:Boolean? = null var SendSmsReminder:Boolean? = null var SendSmsConfirmation:Boolean? = null var SendEmailConfirmation:Boolean? = null var LastTimeToUnBook:Date? = null var CustomFields:ArrayList = ArrayList() var CustomFieldValues:ArrayList = ArrayList() var BookedResourceTypes:ArrayList = ArrayList() var Company:BookedCompany? = null var Customer:BookedCustomer? = null var Quantities:ArrayList = ArrayList() var Service:ServiceInfoResponse? = null var PaymentExpiration:Date? = null var Log:ArrayList = ArrayList() var PaymentLog:ArrayList = ArrayList() var CheckoutLog:ArrayList = ArrayList() var ExternalReference:ArrayList = ArrayList() var ResponseStatus:ResponseStatus? = null var CalendarExportStatus:BookingCalendarExportStatus? = null var LengthInMinutes:Int? = null var BookedBy:String? = null var BookedComments:String? = null var UnbookedComments:String? = null var CommentsToCustomer:String? = null var CreatedDate:Date? = null var UpdatedDate:Date? = null var UnbookedOn:Date? = null var CancellationCode:String? = null var RatingCode:String? = null } open class ServiceQueryResponse { var Id:Int? = null var Name:String? = null var Description:String? = null var ImageUrl:Uri? = null var TotalSpots:Int? = null /** * If this setting is turned on the remaining spots (if Totalspots > 1) is locked from be booked by another customer. */ @ApiMember(Description="If this setting is turned on the remaining spots (if Totalspots > 1) is locked from be booked by another customer.") var LockSpotsToBooking:Boolean? = null var MinNumberOfSpotsPerBooking:Int? = null var MaxNumberOfSpotsPerBooking:Int? = null var MinNumberOfResourcesToBook:Int? = null var MaxNumberOfResourcesToBook:Int? = null var UnbookBeforeDays:Int? = null var UnbookBeforeHours:Int? = null var UnbookBeforeMinutes:Int? = null /** * What type of schedule is connected to the service. RecurringSchedule = 1, DateSchedule = 2 */ @ApiMember(Description="What type of schedule is connected to the service. RecurringSchedule = 1, DateSchedule = 2") var ScheduleType:ScheduleType? = null /** * What type of schedule is connected to the service. RecurringSchedule = 1, DateSchedule = 2 */ @ApiMember(Description="What type of schedule is connected to the service. RecurringSchedule = 1, DateSchedule = 2") var ScheduleTypeId:Int? = null var BookBeforeDays:Int? = null var BookBeforeHours:Int? = null var BookBeforeMinutes:Int? = null var Group:String? = null var EnableBookingQueue:Boolean? = null var EnableCodeLockSync:Boolean? = null var EnableCustomerManualPayment:Boolean? = null var SortOrder:Int? = null var Active:Boolean? = null var IsGroupBooking:Boolean? = null var GroupBooking:GroupBookingSettings? = null var MultipleResource:MultipleResourceSettings? = null var IsPaymentEnabled:Boolean? = null /** * Maximum numbers of minutes the booking payment must be completed before automatically unbooked */ @ApiMember(Description="Maximum numbers of minutes the booking payment must be completed before automatically unbooked") var MaxPaymentTime:Int? = null /** * If the booking should be either 1 = Booked) or 3 = Reserved. Default is 1 = Booked. */ @ApiMember(Description="If the booking should be either 1 = Booked) or 3 = Reserved. Default is 1 = Booked.") var BookingStatusId:Int? = null var OnlyVisibleByAdmin:Boolean? = null var LengthInMinutes:Int? = null var DurationTypeId:Int? = null var Duration:Int? = null var MinDuration:Int? = null var MaxDuration:Int? = null var DurationInterval:Int? = null var PauseAfterBooking:Int? = null var CustomFields:ArrayList = ArrayList() var CustomFieldValues:ArrayList = ArrayList() var BookingCustomFields:ArrayList = ArrayList() var CustomerCustomFields:ArrayList = ArrayList() /** * The booking status options to choose from */ @ApiMember(Description="The booking status options to choose from") var BookingStatusOptions:ArrayList = ArrayList() var Prices:ArrayList = ArrayList() var Schedules:ServiceSchedules? = null var RatingSummary:CompanyRatingSummary? = null var Reviews:ArrayList = ArrayList() var ResourceTypes:ArrayList = ArrayList() var ResponseStatus:ResponseStatus? = null var PriceViewTypeId:Int? = null }