Class StoreIfVerifiedResult


  • public class StoreIfVerifiedResult
    extends java.lang.Object
    The Result of a call to the /ageVerification/store/identity/storeIfVerified endpoint.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getCreatedUtc()
      Getter for createdUtc a UTC timestamp of when record was written to our store.
      java.util.ArrayList<AgeVerifyFailureCode> getFailureCodes()
      Getter for failureCodes A list of failure codes describing why a *false* age determination was made.
      java.lang.Boolean getFromStore()
      Getter for fromStore true if response originated from internal store, false if new age verification check was performed
      java.lang.Boolean getIsOfAge()
      Getter for isOfAge Describes whether the individual meets or exceeds the minimum legal drinking age.
      void setCreatedUtc​(java.lang.String value)
      Setter for createdUtc a UTC timestamp of when record was written to our store.
      void setFailureCodes​(java.util.ArrayList<AgeVerifyFailureCode> value)
      Setter for failureCodes A list of failure codes describing why a *false* age determination was made.
      void setFromStore​(java.lang.Boolean value)
      Setter for fromStore true if response originated from internal store, false if new age verification check was performed
      void setIsOfAge​(java.lang.Boolean value)
      Setter for isOfAge Describes whether the individual meets or exceeds the minimum legal drinking age.
      java.lang.String toString()
      Returns a JSON string representation of StoreIfVerifiedResult
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • StoreIfVerifiedResult

        public StoreIfVerifiedResult()
    • Method Detail

      • getIsOfAge

        public java.lang.Boolean getIsOfAge()
        Getter for isOfAge Describes whether the individual meets or exceeds the minimum legal drinking age.
      • setIsOfAge

        public void setIsOfAge​(java.lang.Boolean value)
        Setter for isOfAge Describes whether the individual meets or exceeds the minimum legal drinking age.
      • getFailureCodes

        public java.util.ArrayList<AgeVerifyFailureCode> getFailureCodes()
        Getter for failureCodes A list of failure codes describing why a *false* age determination was made.
      • setFailureCodes

        public void setFailureCodes​(java.util.ArrayList<AgeVerifyFailureCode> value)
        Setter for failureCodes A list of failure codes describing why a *false* age determination was made.
      • getFromStore

        public java.lang.Boolean getFromStore()
        Getter for fromStore true if response originated from internal store, false if new age verification check was performed
      • setFromStore

        public void setFromStore​(java.lang.Boolean value)
        Setter for fromStore true if response originated from internal store, false if new age verification check was performed
      • getCreatedUtc

        public java.lang.String getCreatedUtc()
        Getter for createdUtc a UTC timestamp of when record was written to our store. Only included when fromStore = true
      • setCreatedUtc

        public void setCreatedUtc​(java.lang.String value)
        Setter for createdUtc a UTC timestamp of when record was written to our store. Only included when fromStore = true
      • toString

        public java.lang.String toString()
        Returns a JSON string representation of StoreIfVerifiedResult
        Overrides:
        toString in class java.lang.Object