Class MerchantPlanMeta

    • Constructor Detail

      • MerchantPlanMeta

        public MerchantPlanMeta()
        Constructs a new empty instance.
      • MerchantPlanMeta

        protected MerchantPlanMeta​(boolean noInit)
        Constructs a new empty instance.
      • MerchantPlanMeta

        public MerchantPlanMeta​(JSONObject jsonObject)
        Construct a new instance backed by the given JSONObject, the parameter is not copied so changes to it will be reflected in this instance and vice-versa.
      • MerchantPlanMeta

        public MerchantPlanMeta​(MerchantPlanMeta src)
        Constructs a new instance that is a deep copy of the source instance. It does not copy the bundle or changelog.
    • Method Detail

      • getCurrentMerchantPlan

        public MerchantPlan getCurrentMerchantPlan()
      • getJSONObject

        public JSONObject getJSONObject()
        Returns the internal JSONObject backing this instance, the return value is not a copy so changes to it will be reflected in this instance and vice-versa.
        Specified by:
        getJSONObject in interface JSONifiable
      • isNotNullMerchantPlans

        public boolean isNotNullMerchantPlans()
        Checks whether the 'merchantPlans' field is set and is not null
      • isNotEmptyMerchantPlans

        public boolean isNotEmptyMerchantPlans()
        Checks whether the 'merchantPlans' field is set and is not null and is not empty
      • isNotNullPeripherals

        public boolean isNotNullPeripherals()
        Checks whether the 'peripherals' field is set and is not null
      • isNotEmptyPeripherals

        public boolean isNotEmptyPeripherals()
        Checks whether the 'peripherals' field is set and is not null and is not empty
      • isNotNullCurrentMerchantPlan

        public boolean isNotNullCurrentMerchantPlan()
        Checks whether the 'currentMerchantPlan' field is set and is not null
      • isNotNullRules

        public boolean isNotNullRules()
        Checks whether the 'rules' field is set and is not null
      • hasMerchantPlans

        public boolean hasMerchantPlans()
        Checks whether the 'merchantPlans' field has been set, however the value could be null
      • hasPeripherals

        public boolean hasPeripherals()
        Checks whether the 'peripherals' field has been set, however the value could be null
      • hasCurrentMerchantPlan

        public boolean hasCurrentMerchantPlan()
        Checks whether the 'currentMerchantPlan' field has been set, however the value could be null
      • hasRules

        public boolean hasRules()
        Checks whether the 'rules' field has been set, however the value could be null
      • setMerchantPlans

        public MerchantPlanMeta setMerchantPlans​(List<MerchantPlan> merchantPlans)
        Sets the field 'merchantPlans'. Nulls in the given List are skipped. List parameter is copied, so it will not reflect any changes, but objects inside it will.
      • setPeripherals

        public MerchantPlanMeta setPeripherals​(List<PeripheralBundleCountry> peripherals)
        Sets the field 'peripherals'. Nulls in the given List are skipped. List parameter is copied, so it will not reflect any changes, but objects inside it will.
      • setCurrentMerchantPlan

        public MerchantPlanMeta setCurrentMerchantPlan​(MerchantPlan currentMerchantPlan)
        Sets the field 'currentMerchantPlan'. The parameter is not copied so changes to it will be reflected in this instance and vice-versa.
      • setRules

        public MerchantPlanMeta setRules​(MerchantPlanRules rules)
        Sets the field 'rules'. The parameter is not copied so changes to it will be reflected in this instance and vice-versa.
      • clearMerchantPlans

        public void clearMerchantPlans()
        Clears the 'merchantPlans' field, the 'has' method for this field will now return false
      • clearPeripherals

        public void clearPeripherals()
        Clears the 'peripherals' field, the 'has' method for this field will now return false
      • clearCurrentMerchantPlan

        public void clearCurrentMerchantPlan()
        Clears the 'currentMerchantPlan' field, the 'has' method for this field will now return false
      • clearRules

        public void clearRules()
        Clears the 'rules' field, the 'has' method for this field will now return false
      • containsChanges

        public boolean containsChanges()
        Returns true if this instance has any changes.
      • resetChangeLog

        public void resetChangeLog()
        Reset the log of changes made to this instance, calling copyChanges() after this would return an empty instance.
      • copyChanges

        public MerchantPlanMeta copyChanges()
        Create a copy of this instance that contains only fields that were set after the constructor was called.
      • mergeChanges

        public void mergeChanges​(MerchantPlanMeta src)
        Copy all the changed fields from the given source to this instance.