/* Options: Date: 2025-04-05 06:01:04 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: UpdateIncentive.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/superadmin/incentive/{id}", Verbs="PUT") @ValidateRequest(Validator="IsAuthenticated") @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) public static class UpdateIncentive implements IReturn { /** * The id of the incentive. */ @ApiMember(Description="The id of the incentive.", IsRequired=true, ParameterType="path") public Integer Id = null; @ApiMember() public String Heading = null; @ApiMember() public String StorageUrl = null; @ApiMember() public String SuccessButtonText = null; @ApiMember() public Integer ActionId = null; @ApiMember() public IncentiveRecurrenceFrequency Frequency = null; @ApiMember() public Long RecurrenceInterval = null; @ApiMember() public Integer InitialDelayInSeconds = null; @ApiMember() public Integer MaxDisplayCount = null; @ApiMember() public Date ValidFrom = null; @ApiMember() public Date ValidTo = null; @ApiMember() public ArrayList CompanyIds = null; @ApiMember() public ArrayList Criteria = null; @ApiMember() public String Payload = null; public Integer getId() { return Id; } public UpdateIncentive setId(Integer value) { this.Id = value; return this; } public String getHeading() { return Heading; } public UpdateIncentive setHeading(String value) { this.Heading = value; return this; } public String getStorageUrl() { return StorageUrl; } public UpdateIncentive setStorageUrl(String value) { this.StorageUrl = value; return this; } public String getSuccessButtonText() { return SuccessButtonText; } public UpdateIncentive setSuccessButtonText(String value) { this.SuccessButtonText = value; return this; } public Integer getActionId() { return ActionId; } public UpdateIncentive setActionId(Integer value) { this.ActionId = value; return this; } public IncentiveRecurrenceFrequency getFrequency() { return Frequency; } public UpdateIncentive setFrequency(IncentiveRecurrenceFrequency value) { this.Frequency = value; return this; } public Long getRecurrenceInterval() { return RecurrenceInterval; } public UpdateIncentive setRecurrenceInterval(Long value) { this.RecurrenceInterval = value; return this; } public Integer getInitialDelayInSeconds() { return InitialDelayInSeconds; } public UpdateIncentive setInitialDelayInSeconds(Integer value) { this.InitialDelayInSeconds = value; return this; } public Integer getMaxDisplayCount() { return MaxDisplayCount; } public UpdateIncentive setMaxDisplayCount(Integer value) { this.MaxDisplayCount = value; return this; } public Date getValidFrom() { return ValidFrom; } public UpdateIncentive setValidFrom(Date value) { this.ValidFrom = value; return this; } public Date getValidTo() { return ValidTo; } public UpdateIncentive setValidTo(Date value) { this.ValidTo = value; return this; } public ArrayList getCompanyIds() { return CompanyIds; } public UpdateIncentive setCompanyIds(ArrayList value) { this.CompanyIds = value; return this; } public ArrayList getCriteria() { return Criteria; } public UpdateIncentive setCriteria(ArrayList value) { this.Criteria = value; return this; } public String getPayload() { return Payload; } public UpdateIncentive setPayload(String value) { this.Payload = value; return this; } private static Object responseType = AdminIncentiveQueryResponse.class; public Object getResponseType() { return responseType; } } public static class AdminIncentiveQueryResponse extends CompanyIncentiveResponse { public IncentiveRecurrenceFrequency Frequency = null; public Long RecurrenceInterval = null; public Date CreatedDate = null; public Date ModifiedDate = null; public ArrayList CompanyIds = null; public ArrayList Criteria = null; public Boolean ApplyToAllCompanies = null; public IncentiveRecurrenceFrequency getFrequency() { return Frequency; } public AdminIncentiveQueryResponse setFrequency(IncentiveRecurrenceFrequency value) { this.Frequency = value; return this; } public Long getRecurrenceInterval() { return RecurrenceInterval; } public AdminIncentiveQueryResponse setRecurrenceInterval(Long value) { this.RecurrenceInterval = value; return this; } public Date getCreatedDate() { return CreatedDate; } public AdminIncentiveQueryResponse setCreatedDate(Date value) { this.CreatedDate = value; return this; } public Date getModifiedDate() { return ModifiedDate; } public AdminIncentiveQueryResponse setModifiedDate(Date value) { this.ModifiedDate = value; return this; } public ArrayList getCompanyIds() { return CompanyIds; } public AdminIncentiveQueryResponse setCompanyIds(ArrayList value) { this.CompanyIds = value; return this; } public ArrayList getCriteria() { return Criteria; } public AdminIncentiveQueryResponse setCriteria(ArrayList value) { this.Criteria = value; return this; } public Boolean isApplyToAllCompanies() { return ApplyToAllCompanies; } public AdminIncentiveQueryResponse setApplyToAllCompanies(Boolean value) { this.ApplyToAllCompanies = value; return this; } } public static class Country extends BaseModel { @References(Currency.class) public String CurrencyId = null; public Currency CurrencyInfo = null; @Required() public String Name = null; public String Culture = null; public String TimeZone = null; public Date ModifiedDate = null; @Required() public String Id = null; public String getCurrencyId() { return CurrencyId; } public Country setCurrencyId(String value) { this.CurrencyId = value; return this; } public Currency getCurrencyInfo() { return CurrencyInfo; } public Country setCurrencyInfo(Currency value) { this.CurrencyInfo = value; return this; } public String getName() { return Name; } public Country setName(String value) { this.Name = value; return this; } public String getCulture() { return Culture; } public Country setCulture(String value) { this.Culture = value; return this; } public String getTimeZone() { return TimeZone; } public Country setTimeZone(String value) { this.TimeZone = value; return this; } public Date getModifiedDate() { return ModifiedDate; } public Country setModifiedDate(Date value) { this.ModifiedDate = value; return this; } public String getId() { return Id; } public Country setId(String value) { this.Id = value; return this; } } public static class Currency extends BaseModel { @Required() public String Name = null; @Required() public String CurrencySign = null; @Required() public Boolean Active = null; public Date ModifiedDate = null; @Required() public String Id = null; public String getName() { return Name; } public Currency setName(String value) { this.Name = value; return this; } public String getCurrencySign() { return CurrencySign; } public Currency setCurrencySign(String value) { this.CurrencySign = value; return this; } public Boolean isActive() { return Active; } public Currency setActive(Boolean value) { this.Active = value; return this; } public Date getModifiedDate() { return ModifiedDate; } public Currency setModifiedDate(Date value) { this.ModifiedDate = value; return this; } public String getId() { return Id; } public Currency setId(String value) { this.Id = value; return this; } } public static enum IncentiveRecurrenceFrequency { OneTime(1), Weekly(2), Monthly(3); private final int value; IncentiveRecurrenceFrequency(final int intValue) { value = intValue; } public int getValue() { return value; } } public static class IncentiveCriteriaDto { public CriteriaType CriteriaType = null; public String Value = null; public Boolean InvertCondition = null; public CriteriaType getCriteriaType() { return CriteriaType; } public IncentiveCriteriaDto setCriteriaType(CriteriaType value) { this.CriteriaType = value; return this; } public String getValue() { return Value; } public IncentiveCriteriaDto setValue(String value) { this.Value = value; return this; } public Boolean isInvertCondition() { return InvertCondition; } public IncentiveCriteriaDto setInvertCondition(Boolean value) { this.InvertCondition = value; return this; } } public static class LicenseTypeQueryResponse { /** * The license type id */ @ApiMember(Description="The license type id") public Integer Id = null; /** * The license type name */ @ApiMember(Description="The license type name") public String Name = null; /** * The license type description */ @ApiMember(Description="The license type description") public String Description = 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.") public Boolean IsExtraLicenseOption = null; /** * The period of notice for the license in days. */ @ApiMember(Description="The period of notice for the license in days.") public Integer PeriodOfNoticeDays = null; /** * The license items for the license type */ @ApiMember(Description="The license items for the license type") public ArrayList Items = null; /** * The license prices in each country for the license type */ @ApiMember(Description="The license prices in each country for the license type") public ArrayList Prices = null; public Integer getId() { return Id; } public LicenseTypeQueryResponse setId(Integer value) { this.Id = value; return this; } public String getName() { return Name; } public LicenseTypeQueryResponse setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public LicenseTypeQueryResponse setDescription(String value) { this.Description = value; return this; } public Boolean getIsExtraLicenseOption() { return IsExtraLicenseOption; } public LicenseTypeQueryResponse setIsExtraLicenseOption(Boolean value) { this.IsExtraLicenseOption = value; return this; } public Integer getPeriodOfNoticeDays() { return PeriodOfNoticeDays; } public LicenseTypeQueryResponse setPeriodOfNoticeDays(Integer value) { this.PeriodOfNoticeDays = value; return this; } public ArrayList getItems() { return Items; } public LicenseTypeQueryResponse setItems(ArrayList value) { this.Items = value; return this; } public ArrayList getPrices() { return Prices; } public LicenseTypeQueryResponse setPrices(ArrayList value) { this.Prices = value; return this; } } public static class CompanyIncentiveResponse { public Integer Id = null; public String Heading = null; public String StorageUrl = null; public String SuccessButtonText = null; public Integer ActionId = null; public Integer InitialDelayInSeconds = null; public Integer MaxDisplayCount = null; public Date ValidFrom = null; public Date ValidTo = null; public IncentiveActionResponse Action = null; public String Payload = null; public Integer getId() { return Id; } public CompanyIncentiveResponse setId(Integer value) { this.Id = value; return this; } public String getHeading() { return Heading; } public CompanyIncentiveResponse setHeading(String value) { this.Heading = value; return this; } public String getStorageUrl() { return StorageUrl; } public CompanyIncentiveResponse setStorageUrl(String value) { this.StorageUrl = value; return this; } public String getSuccessButtonText() { return SuccessButtonText; } public CompanyIncentiveResponse setSuccessButtonText(String value) { this.SuccessButtonText = value; return this; } public Integer getActionId() { return ActionId; } public CompanyIncentiveResponse setActionId(Integer value) { this.ActionId = value; return this; } public Integer getInitialDelayInSeconds() { return InitialDelayInSeconds; } public CompanyIncentiveResponse setInitialDelayInSeconds(Integer value) { this.InitialDelayInSeconds = value; return this; } public Integer getMaxDisplayCount() { return MaxDisplayCount; } public CompanyIncentiveResponse setMaxDisplayCount(Integer value) { this.MaxDisplayCount = value; return this; } public Date getValidFrom() { return ValidFrom; } public CompanyIncentiveResponse setValidFrom(Date value) { this.ValidFrom = value; return this; } public Date getValidTo() { return ValidTo; } public CompanyIncentiveResponse setValidTo(Date value) { this.ValidTo = value; return this; } public IncentiveActionResponse getAction() { return Action; } public CompanyIncentiveResponse setAction(IncentiveActionResponse value) { this.Action = value; return this; } public String getPayload() { return Payload; } public CompanyIncentiveResponse setPayload(String value) { this.Payload = value; return this; } } public static class IncentiveCriteria extends BaseModel { public Integer Id = null; public Integer IncentiveId = null; public CriteriaType CriteriaType = null; public String Value = null; public Boolean InvertCondition = null; public Date CreatedDate = null; public Integer getId() { return Id; } public IncentiveCriteria setId(Integer value) { this.Id = value; return this; } public Integer getIncentiveId() { return IncentiveId; } public IncentiveCriteria setIncentiveId(Integer value) { this.IncentiveId = value; return this; } public CriteriaType getCriteriaType() { return CriteriaType; } public IncentiveCriteria setCriteriaType(CriteriaType value) { this.CriteriaType = value; return this; } public String getValue() { return Value; } public IncentiveCriteria setValue(String value) { this.Value = value; return this; } public Boolean isInvertCondition() { return InvertCondition; } public IncentiveCriteria setInvertCondition(Boolean value) { this.InvertCondition = value; return this; } public Date getCreatedDate() { return CreatedDate; } public IncentiveCriteria setCreatedDate(Date value) { this.CreatedDate = value; return this; } } public static class IncentiveActionResponse { public Integer Id = null; public IncentiveActionType ActionType = null; public String Page = null; public String Segment = null; public String Element = null; public Integer LicenseTypeId = null; public LicenseTypeQueryResponse SuggestedLicenseToUpgrade = null; public Integer getId() { return Id; } public IncentiveActionResponse setId(Integer value) { this.Id = value; return this; } public IncentiveActionType getActionType() { return ActionType; } public IncentiveActionResponse setActionType(IncentiveActionType value) { this.ActionType = value; return this; } public String getPage() { return Page; } public IncentiveActionResponse setPage(String value) { this.Page = value; return this; } public String getSegment() { return Segment; } public IncentiveActionResponse setSegment(String value) { this.Segment = value; return this; } public String getElement() { return Element; } public IncentiveActionResponse setElement(String value) { this.Element = value; return this; } public Integer getLicenseTypeId() { return LicenseTypeId; } public IncentiveActionResponse setLicenseTypeId(Integer value) { this.LicenseTypeId = value; return this; } public LicenseTypeQueryResponse getSuggestedLicenseToUpgrade() { return SuggestedLicenseToUpgrade; } public IncentiveActionResponse setSuggestedLicenseToUpgrade(LicenseTypeQueryResponse value) { this.SuggestedLicenseToUpgrade = value; return this; } } public static class BaseModel { } public static enum CriteriaType { LicenseAvailability, SmsActivation, EAccountingActivation, CodeLockActivation, SocialActivation, OnlinePaymentActivation, FollowUpMessageActivation, RatingActivation; } public static class LicenseItemsResponse { public Integer Id = null; public String Name = null; public Integer AllowedItems = null; public Integer getId() { return Id; } public LicenseItemsResponse setId(Integer value) { this.Id = value; return this; } public String getName() { return Name; } public LicenseItemsResponse setName(String value) { this.Name = value; return this; } public Integer getAllowedItems() { return AllowedItems; } public LicenseItemsResponse setAllowedItems(Integer value) { this.AllowedItems = value; return this; } } public static class LicensePriceResponse { public Integer LicenseTypeId = null; public String CountryId = null; public Integer Price = null; public Country Country = null; public Integer LicensePlanId = null; public Integer getLicenseTypeId() { return LicenseTypeId; } public LicensePriceResponse setLicenseTypeId(Integer value) { this.LicenseTypeId = value; return this; } public String getCountryId() { return CountryId; } public LicensePriceResponse setCountryId(String value) { this.CountryId = value; return this; } public Integer getPrice() { return Price; } public LicensePriceResponse setPrice(Integer value) { this.Price = value; return this; } public Country getCountry() { return Country; } public LicensePriceResponse setCountry(Country value) { this.Country = value; return this; } public Integer getLicensePlanId() { return LicensePlanId; } public LicensePriceResponse setLicensePlanId(Integer value) { this.LicensePlanId = value; return this; } } public static enum IncentiveActionType { Upgrade(1), AddOn(2), Information(3); private final int value; IncentiveActionType(final int intValue) { value = intValue; } public int getValue() { return value; } } public static enum Currency { Sek(1), Eur(2); private final int value; Currency(final int intValue) { value = intValue; } public int getValue() { return value; } } }