/* Options: Date: 2025-04-05 01:33:40 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AdminIncentivesQuery.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } // @DataContract export class QueryBase { /** @description 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) public Skip?: number; /** @description 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) public Take?: number; /** @description 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) public OrderBy: string; /** @description 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) public OrderByDesc: string; /** @description 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) public Include: string; // @DataMember(Order=6) public Fields: string; // @DataMember(Order=7) public Meta: { [index: string]: string; }; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class QueryDb extends QueryBase { public constructor(init?: Partial>) { super(init); (Object as any).assign(this, init); } } export class AccessKeyTypeResponse { public Id: number; public KeyType: string; public Description: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class BillingMethodQueryResponse { /** @description The billing method id */ // @ApiMember(Description="The billing method id") public Id: number; /** @description The billing method name */ // @ApiMember(Description="The billing method name") public Name: string; /** @description The billing method description */ // @ApiMember(Description="The billing method description") public Description: string; /** @description The billing method is valid for the following countries */ // @ApiMember(Description="The billing method is valid for the following countries") public Countries: string[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class CompanyOwnerResponse { /** @description Company owner id */ // @ApiMember(Description="Company owner id") public Id: number; /** @description Company owner name */ // @ApiMember(Description="Company owner name") public Name: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class CompanyTypeResponse { /** @description Company type id */ // @ApiMember(Description="Company type id") public Id: number; /** @description Company type name */ // @ApiMember(Description="Company type name") public Name: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class CurrencyInfoResponse { /** @description The currency id */ // @ApiMember(Description="The currency id") public Id: string; /** @description The currency id */ // @ApiMember(Description="The currency id") public Name: string; /** @description The currency id */ // @ApiMember(Description="The currency id") public CurrencySign: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class InvoiceStatusResponse { /** @description The status id */ // @ApiMember(Description="The status id") public Id: number; /** @description The status name */ // @ApiMember(Description="The status name") public Name: string; /** @description The status description */ // @ApiMember(Description="The status description") public Description: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class InvoiceLineResponse { /** @description The invoice id */ // @ApiMember(Description="The invoice id") public InvoiceId: number; /** @description The invoice line id */ // @ApiMember(Description="The invoice line id") public Id: number; /** @description The invoice line period from date */ // @ApiMember(Description="The invoice line period from date") public PeriodFrom: string; /** @description The invoice line period to date */ // @ApiMember(Description="The invoice line period to date") public PeriodTo: string; /** @description The invoice line article number */ // @ApiMember(Description="The invoice line article number") public ArticleNumber?: number; /** @description The invoice line article name */ // @ApiMember(Description="The invoice line article name") public ArticleName: string; /** @description The invoice line article description */ // @ApiMember(Description="The invoice line article description") public ArticleDescription: string; /** @description The invoice line quantity */ // @ApiMember(Description="The invoice line quantity") public Quantity: number; /** @description The invoice line unit price */ // @ApiMember(Description="The invoice line unit price") public UnitPrice: number; /** @description The invoice line sub total */ // @ApiMember(Description="The invoice line sub total") public SubTotal: number; /** @description The invoice line rebate in percent */ // @ApiMember(Description="The invoice line rebate in percent") public Rebate: number; /** @description The invoice line updated date */ // @ApiMember(Description="The invoice line updated date") public Updated?: string; /** @description The invoice line created date */ // @ApiMember(Description="The invoice line created date") public Created?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class BillingInformationResponse { /** @description The company id. */ // @ApiMember(Description="The company id.") public CompanyId: string; /** @description The prefered billing method. */ // @ApiMember(Description="The prefered billing method.", IsRequired=true) public BillingMethodId: number; /** @description The prefered billing method. */ // @ApiMember(Description="The prefered billing method.", IsRequired=true) public LicensePlanId: number; /** @description 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.") public Name: string; /** @description If you want to add the attention to the billing address. */ // @ApiMember(Description="If you want to add the attention to the billing address.") public Attention: string; /** @description 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.") public Street1: string; /** @description The street for the billing adress. */ // @ApiMember(Description="The street for the billing adress.") public Street2: string; /** @description 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.") public ZipCode: string; /** @description 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.") public City: string; /** @description 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.") public CountryId: string; /** @description 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.") public Email: string; /** @description The company global location number. */ // @ApiMember(Description="The company global location number.") public GLN: string; /** @description You're internal rereference. */ // @ApiMember(Description="You're internal rereference.") public ReferenceLine1: string; /** @description You're internal rereference. */ // @ApiMember(Description="You're internal rereference.") public ReferenceLine2: string; /** @description The billing payment terms in days. This is default 15 days. */ // @ApiMember(Description="The billing payment terms in days. This is default 15 days.") public PaymentTermsDays: number; /** @description The company vat registration number. */ // @ApiMember(Description="The company vat registration number.") public VatRegistrationNumber: string; /** @description The billing method options to choose from */ // @ApiMember(Description="The billing method options to choose from") public BillingMethodOptions: BillingMethod[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class BaseModel { public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class ExternalReference extends BaseModel { // @Required() public CompanyId: string; // @Required() public Id: string; // @Required() public OwnerId: string; // @Required() public ReferenceType: string; public ExternalData: string; public CreatedBy: string; // @Required() public Updated: string; // @Required() public Created: string; public ModifiedDate?: string; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } export class CompanyInvoiceQueryResponse { /** @description The company id */ // @ApiMember(Description="The company id") public CompanyId: string; /** @description The invoice id */ // @ApiMember(Description="The invoice id") public Id: number; /** @description Status of the invoice */ // @ApiMember(Description="Status of the invoice") public StatusId: number; /** @description Date of the invoice */ // @ApiMember(Description="Date of the invoice") public InvoiceDate: string; /** @description Due date of the invoice */ // @ApiMember(Description="Due date of the invoice") public DueDate?: string; /** @description What start date of the invoice period */ // @ApiMember(Description="What start date of the invoice period") public PeriodFrom: string; /** @description What end date of the invoice period */ // @ApiMember(Description="What end date of the invoice period") public PeriodTo: string; /** @description The total amount of the invoice */ // @ApiMember(Description="The total amount of the invoice") public TotalAmount: number; /** @description The rounding of the total amount */ // @ApiMember(Description="The rounding of the total amount") public Rounding: number; /** @description The VAT */ // @ApiMember(Description="The VAT") public VAT: number; /** @description The VAT registration number */ // @ApiMember(Description="The VAT registration number") public VATRegistrationNo: string; /** @description The company registration number */ // @ApiMember(Description="The company registration number") public RegistrationNumber: string; /** @description The company name */ // @ApiMember(Description="The company name") public CompanyName: string; /** @description The company owner, used for grouping invoices per CompanyOwner */ // @ApiMember(Description="The company owner, used for grouping invoices per CompanyOwner") public CompanyOwner: CompanyOwnerResponse; /** @description The company type */ // @ApiMember(Description="The company type") public CompanyType: CompanyTypeResponse; /** @description The company contact person */ // @ApiMember(Description="The company contact person") public ContactPerson: string; /** @description The company street */ // @ApiMember(Description="The company street") public Street1: string; /** @description The company street */ // @ApiMember(Description="The company street") public Street2: string; /** @description The company city */ // @ApiMember(Description="The company city") public City: string; /** @description The company zip */ // @ApiMember(Description="The company zip") public Zip: string; /** @description The company country */ // @ApiMember(Description="The company country") public CountryId: string; /** @description The invoice currency */ // @ApiMember(Description="The invoice currency") public CurrencyId: string; /** @description The invoice created date */ // @ApiMember(Description="The invoice created date") public Created?: string; /** @description The invoice updated date */ // @ApiMember(Description="The invoice updated date") public Updated?: string; /** @description The reference to promikbook invoice */ // @ApiMember(Description="The reference to promikbook invoice") public PromikBookInvoiceId?: number; /** @description Any invoice message */ // @ApiMember(Description="Any invoice message") public Message: string; /** @description The currency information */ // @ApiMember(Description="The currency information") public CurrencyInfo: CurrencyInfoResponse; /** @description The currency information */ // @ApiMember(Description="The currency information") public InvoiceStatus: InvoiceStatusResponse; /** @description The currency information */ // @ApiMember(Description="The currency information") public InvoiceLines: InvoiceLineResponse[]; /** @description Billing information */ // @ApiMember(Description="Billing information") public BillingInformation: BillingInformationResponse; public ExternalReferences: ExternalReference[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class BookingStatusQueryResponse { public Id: number; public Name: string; public Description: string; public Icon: string; public Color: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @DataContract export class ResponseError { // @DataMember(Order=1) public ErrorCode: string; // @DataMember(Order=2) public FieldName: string; // @DataMember(Order=3) public Message: string; // @DataMember(Order=4) public Meta: { [index: string]: string; }; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @DataContract export class ResponseStatus { // @DataMember(Order=1) public ErrorCode: string; // @DataMember(Order=2) public Message: string; // @DataMember(Order=3) public StackTrace: string; // @DataMember(Order=4) public Errors: ResponseError[]; // @DataMember(Order=5) public Meta: { [index: string]: string; }; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class BookingQueryResponse { public Id: number; public CompanyId: string; public From: string; public To: string; public Status: BookingStatusEnum; public StatusId: number; public StatusName: string; public StatusInfo: BookingStatusQueryResponse; public SendEmailReminder: boolean; public SendSmsReminder: boolean; public SendSmsConfirmation: boolean; public SendEmailConfirmation: boolean; public LastTimeToUnBook?: string; public CustomFields: CustomFieldConfigData[]; public CustomFieldValues: CustomFieldDataResponse[]; public BookedResourceTypes: BookedResourceType[]; public Company: BookedCompany; public Customer: BookedCustomer; public Quantities: BookedQuantity[]; public Service: ServiceInfoResponse; public PaymentExpiration?: string; public Log: BookingLogQueryResponse[]; public PaymentLog: BookingPaymentLogQueryResponse[]; public CheckoutLog: BookingCheckoutQueryResponse[]; public ExternalReference: ExternalReferenceResponse[]; public ResponseStatus: ResponseStatus; public CalendarExportStatus: BookingCalendarExportStatus; public LengthInMinutes?: number; public BookedBy: string; public BookedComments: string; public UnbookedComments: string; public CommentsToCustomer: string; public CreatedDate: string; public UpdatedDate: string; public UnbookedOn?: string; public CancellationCode: string; public RatingCode: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class GroupedBookingQueryResponse { public CompanyId: string; public Date: string; public Bookings: BookingQueryResponse[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class CategoryQueryResponse { public Id: number; public Name: string; public Description: string; public Header: string; public ImageUrl: string; public Active: boolean; public ResponseStatus: ResponseStatus; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class CompanyTypeQueryResponse { public Id: number; public Name: string; public Description: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export enum Currency { SEK = 1, EUR = 2, } export class Country extends BaseModel { // @References("typeof(BokaMera.API.ServiceModel.Db.Currency)") public CurrencyId: string; public CurrencyInfo: Currency; // @Required() public Name: string; public Culture: string; public TimeZone: string; public ModifiedDate?: string; // @Required() public Id: string; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } export class CountryQueryResponse { public Id: string; public Name: string; public Description: string; public ResponseStatus: ResponseStatus; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class Currency extends BaseModel { // @Required() public Name: string; // @Required() public CurrencySign: string; // @Required() public Active: boolean; public ModifiedDate?: string; // @Required() public Id: string; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } export class CurrencyQueryResponse { public Id: string; public Name: string; public Description: string; public CurrencySign: string; public Active: boolean; public ResponseStatus: ResponseStatus; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class GeoDataCitiesQueryResponse { public Id: string; public City: string; public Longitude: string; public Latitude: string; public Country: string; public Iso2: string; public Admin: string; public Capital: string; public Population?: number; public PopulationProper?: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export enum IncentiveRecurrenceFrequency { OneTime = 1, Weekly = 2, Monthly = 3, } export class IncentiveCompanyRelation extends BaseModel { public Id: number; public CompanyId: string; public IncentiveId: number; public CreatedDate: string; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } export enum CriteriaType { LicenseAvailability = 'LicenseAvailability', SmsActivation = 'SmsActivation', eAccountingActivation = 'eAccountingActivation', CodeLockActivation = 'CodeLockActivation', SocialActivation = 'SocialActivation', OnlinePaymentActivation = 'OnlinePaymentActivation', FollowUpMessageActivation = 'FollowUpMessageActivation', RatingActivation = 'RatingActivation', } export class IncentiveCriteria extends BaseModel { public Id: number; public IncentiveId: number; public CriteriaType: CriteriaType; public Value: string; public InvertCondition: boolean; public CreatedDate: string; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } export enum IncentiveActionType { Upgrade = 1, AddOn = 2, Information = 3, } export class IncentiveAction extends BaseModel { public Id: number; public ActionType: IncentiveActionType; public Page: string; public Segment: string; public Element: string; public LicenseTypeId?: number; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } export class Incentive extends BaseModel { public Id: number; public Heading: string; public StorageUrl: string; public SuccessButtonText: string; public Active: boolean; public ActionId: number; public Frequency: IncentiveRecurrenceFrequency; public RecurrenceInterval: number; public InitialDelayInSeconds: number; public MaxDisplayCount?: number; public ValidFrom: string; public ValidTo: string; public CreatedDate: string; public ModifiedDate?: string; public AppliesToAllCompanies: boolean; public Payload: string; public Companies: IncentiveCompanyRelation[]; public Criteria: IncentiveCriteria[]; // @Ignore() public Action: IncentiveAction; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } // @DataContract export class QueryResponse { // @DataMember(Order=1) public Offset: number; // @DataMember(Order=2) public Total: number; // @DataMember(Order=3) public Results: T[]; // @DataMember(Order=4) public Meta: { [index: string]: string; }; // @DataMember(Order=5) public ResponseStatus: ResponseStatus; public constructor(init?: Partial>) { (Object as any).assign(this, init); } } export class LicenseItemsResponse { public Id: number; public Name: string; public AllowedItems: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class LicensePriceResponse { public LicenseTypeId: number; public CountryId: string; public Price: number; public Country: Country; public LicensePlanId: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class LicenseTypeQueryResponse { /** @description The license type id */ // @ApiMember(Description="The license type id") public Id: number; /** @description The license type name */ // @ApiMember(Description="The license type name") public Name: string; /** @description The license type description */ // @ApiMember(Description="The license type description") public Description: string; /** @description 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.") public IsExtraLicenseOption: boolean; /** @description The period of notice for the license in days. */ // @ApiMember(Description="The period of notice for the license in days.") public PeriodOfNoticeDays: number; /** @description The license items for the license type */ // @ApiMember(Description="The license items for the license type") public Items: LicenseItemsResponse[]; /** @description The license prices in each country for the license type */ // @ApiMember(Description="The license prices in each country for the license type") public Prices: LicensePriceResponse[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class LicenseInformationQueryResponse { public Name: string; public Description: string; public Url: string; public FreeEdition: boolean; public StartEdition: boolean; public ProEdition: boolean; public SmartEdition: boolean; public EnterpriseEdition: boolean; public FreeEditionValue: string; public StartEditionValue: string; public ProEditionValue: string; public SmartEditionValue: string; public EnterpriseEditionValue: string; public LicenseInformationTypeId: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class VossPlanResponse { public Id: string; public Name: string; public LengthUnit: string; public Length: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export enum LengthUnit { Week = 1, Month = 2, Year = 3, } export class LicensePlanQueryResponse { public Id: number; public VossPlanId: string; public Name: string; public Description: string; public VossPlan: VossPlanResponse; public PlanLength: number; public PlanLengthUnit: LengthUnit; public UpdatedDate: string; public CreatedDate: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class LicenseInformationTypeQueryResponse { /** @description The license information type id */ // @ApiMember(Description="The license information type id") public Id: number; /** @description The license information type name */ // @ApiMember(Description="The license information type name") public Name: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class DasboardMessageTypeResponse { /** @description The message type id */ // @ApiMember(Description="The message type id") public Id: number; /** @description The message type name */ // @ApiMember(Description="The message type name") public Name: string; /** @description The message type description */ // @ApiMember(Description="The message type description") public Description: string; /** @description The message type image */ // @ApiMember(Description="The message type image") public ImageUrl: string; /** @description If the message type is a application message */ // @ApiMember(Description="If the message type is a application message") public ApplicationMessage?: boolean; /** @description The message type icon */ // @ApiMember(Description="The message type icon") public Icon: string; /** @description The message type color */ // @ApiMember(Description="The message type color") public Color: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class DashboardMessageQueryResponse { /** @description The message id */ // @ApiMember(Description="The message id") public Id: number; /** @description The message title. */ // @ApiMember(Description="The message title.") public Title: string; /** @description The message body. */ // @ApiMember(Description="The message body.") public Body: string; /** @description If the message is important. */ // @ApiMember(Description="If the message is important.") public Important: boolean; /** @description If the message visible from date. */ // @ApiMember(Description="If the message visible from date.") public VisibleFrom: string; /** @description If the message visible to date. */ // @ApiMember(Description="If the message visible to date.") public VisibleTo: string; /** @description If the message created date. */ // @ApiMember(Description="If the message created date.") public Created: string; /** @description If the message type id. */ // @ApiMember(Description="If the message type id.") public MessageTypeId: number; /** @description If the message is connected to a support case. */ // @ApiMember(Description="If the message is connected to a support case.") public SupportCaseId?: number; /** @description If the message type information. */ // @ApiMember(Description="If the message type information.") public MessageType: DasboardMessageTypeResponse; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class MessageTypeQueryResponse { /** @description The message type id */ // @ApiMember(Description="The message type id") public Id: number; /** @description The message type name. */ // @ApiMember(Description="The message type name.") public Name: string; /** @description The message type description. */ // @ApiMember(Description="The message type description.") public Description: string; /** @description 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.") public MaxCharacters: number; /** @description 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.") public DefaultText: string; /** @description The send method for this type. 1 = Email, 2 = SMS. */ // @ApiMember(Description="The send method for this type. 1 = Email, 2 = SMS.") public SendMethodId: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class FieldTranslationResponse { /** @description The field translation id */ // @ApiMember(Description="The field translation id") public Id: number; /** @description The field translation code. */ // @ApiMember(Description="The field translation code.") public Code: string; /** @description The field translation name. */ // @ApiMember(Description="The field translation name.") public Name: string; /** @description The field translation description. */ // @ApiMember(Description="The field translation description.") public Description: string; /** @description The field translation group. */ // @ApiMember(Description="The field translation group.") public Group: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class MessageSendMethodQueryResponse { /** @description The send method id */ // @ApiMember(Description="The send method id") public Id: number; /** @description The send method name. */ // @ApiMember(Description="The send method name.") public Name: string; /** @description The send method description. */ // @ApiMember(Description="The send method description.") public Description: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class NewsletterSendMethodQueryResponse { /** @description The send method id */ // @ApiMember(Description="The send method id") public Id: number; /** @description The send method name. */ // @ApiMember(Description="The send method name.") public Name: string; /** @description The send method description. */ // @ApiMember(Description="The send method description.") public Description: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class NewsletterFieldTranslationResponse { /** @description The field translation id */ // @ApiMember(Description="The field translation id") public Id: number; /** @description The field translation code. */ // @ApiMember(Description="The field translation code.") public Code: string; /** @description The field translation name. */ // @ApiMember(Description="The field translation name.") public Name: string; /** @description The field translation description. */ // @ApiMember(Description="The field translation description.") public Description: string; /** @description The field translation group. */ // @ApiMember(Description="The field translation group.") public Group: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class NewsletterEmailTemplatesQueryResponse { /** @description The email template id */ // @ApiMember(Description="The email template id") public Id: number; /** @description The email template name. */ // @ApiMember(Description="The email template name.") public Name: string; /** @description The email template description. */ // @ApiMember(Description="The email template description.") public Description: string; /** @description The email template html content. */ // @ApiMember(Description="The email template html content.") public Body: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class RatingReviewResponse { /** @description The title for the review */ // @ApiMember(Description="The title for the review") public Title: string; /** @description The description for the review */ // @ApiMember(Description="The description for the review") public Description: string; /** @description The rating score */ // @ApiMember(Description="The rating score") public RatingScore: number; /** @description The review author */ // @ApiMember(Description="The review author") public Author: string; /** @description The created date */ // @ApiMember(Description="The created date") public Created: string; /** @description The review answer from the company */ // @ApiMember(Description="The review answer from the company") public ReviewAnswer: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class RebateCodeServiceResponse { public Id: number; public Name: string; public Description: string; public Active: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class RebateCodeCustomerResponse { public Id: string; public Firstname: string; public Lastname: string; public Email: string; public Phone: string; public ImageUrl: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class RebateCodeTransactionQueryResponse { public Id: number; public CompanyId: string; public Note: string; public RebateCodeId: number; public RebateCodeSign: string; public RebateCodeTypeId?: number; public RebateCodeTypeName: string; public Amount: number; public Usage: string; public BookingId?: number; public UpdatedDate: string; public CreatedDate: string; public Service: RebateCodeServiceResponse; public Customer: RebateCodeCustomerResponse; public PriceSign: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class BookingReportFieldTranslationResponse { /** @description The field translation id */ // @ApiMember(Description="The field translation id") public Id: number; /** @description The field translation code. */ // @ApiMember(Description="The field translation code.") public Code: string; /** @description The field translation name. */ // @ApiMember(Description="The field translation name.") public Name: string; /** @description The field translation description. */ // @ApiMember(Description="The field translation description.") public Description: string; /** @description The field translation group. */ // @ApiMember(Description="The field translation group.") public Group: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class ServiceQueryResponse { public Id: number; public Name: string; public Description: string; public ImageUrl: string; public TotalSpots: number; /** @description 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.") public LockSpotsToBooking?: boolean; public MinNumberOfSpotsPerBooking: number; public MaxNumberOfSpotsPerBooking: number; public MinNumberOfResourcesToBook: number; public MaxNumberOfResourcesToBook: number; public UnbookBeforeDays: number; public UnbookBeforeHours: number; public UnbookBeforeMinutes: number; /** @description 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") public ScheduleType: ScheduleType; /** @description 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") public ScheduleTypeId: number; public BookBeforeDays: number; public BookBeforeHours: number; public BookBeforeMinutes: number; public Group: string; public EnableBookingQueue: boolean; public EnableCodeLockSync: boolean; public EnableCustomerManualPayment: boolean; public SortOrder: number; public Active: boolean; public IsGroupBooking: boolean; public GroupBooking: GroupBookingSettings; public MultipleResource: MultipleResourceSettings; public IsPaymentEnabled: boolean; /** @description 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") public MaxPaymentTime: number; /** @description 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.") public BookingStatusId: number; public OnlyVisibleByAdmin: boolean; public LengthInMinutes?: number; public DurationTypeId: number; public Duration?: number; public MinDuration?: number; public MaxDuration?: number; public DurationInterval?: number; public PauseAfterBooking: number; public CustomFields: CustomFieldConfigData[]; public CustomFieldValues: CustomFieldDataResponse[]; public BookingCustomFields: CustomFieldConfigData[]; public CustomerCustomFields: CustomFieldConfigData[]; /** @description The booking status options to choose from */ // @ApiMember(Description="The booking status options to choose from") public BookingStatusOptions: BookingStatusOptionsResponse[]; public Prices: ServicePriceResponse[]; public Schedules: ServiceSchedules; public RatingSummary: CompanyRatingSummary; public Reviews: RatingReviewResponse[]; public ResourceTypes: ServiceResourceTypeResponse[]; public ResponseStatus: ResponseStatus; public PriceViewTypeId?: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class GroupedServiceQueryResponse { public Group: string; public SortOrder: number; public Items: ServiceQueryResponse[]; public ResponseStatus: ResponseStatus; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class PriceViewTypeQueryResponse { public Id: number; public Name: string; public Description: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class SupportCaseStatusResponse { /** @description The status id */ // @ApiMember(Description="The status id") public Id: number; /** @description The status name */ // @ApiMember(Description="The status name") public Name: string; /** @description The status description */ // @ApiMember(Description="The status description") public Description: string; /** @description The status icon */ // @ApiMember(Description="The status icon") public Icon: string; /** @description The status color */ // @ApiMember(Description="The status color") public Color: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class SupportCaseTypeResponse { /** @description The type id */ // @ApiMember(Description="The type id") public Id: number; /** @description The type name */ // @ApiMember(Description="The type name") public Name: string; /** @description The type description */ // @ApiMember(Description="The type description") public Description: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class SupportCaseAreaResponse { /** @description The area id */ // @ApiMember(Description="The area id") public Id: number; /** @description The area name */ // @ApiMember(Description="The area name") public Name: string; /** @description The area description */ // @ApiMember(Description="The area description") public Description: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class TrialQueryResponse { public Id: number; public Name: string; public TrialDays: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/superadmin/incentives/", "GET") // @ValidateRequest(Validator="IsAuthenticated") // @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) export class AdminIncentivesQuery extends QueryDb> implements IReturn>> { public Id?: number; public CompanyId?: string; public ValidFrom?: Date; public ValidTo?: Date; public ActionId?: number; public Active?: boolean; public IncludeCriteria: boolean; public IncludeCompanies: boolean; public IncludeAction: boolean; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'AdminIncentivesQuery'; } public getMethod() { return 'GET'; } public createResponse() { return new QueryResponse>(); } }