Class Person.Requirements

    • Constructor Summary

      Constructors 
      Constructor Description
      Requirements()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      protected boolean canEqual​(java.lang.Object other)  
      boolean equals​(java.lang.Object o)  
      java.util.List<java.lang.String> getCurrentlyDue()
      Fields that need to be collected to keep the person's account enabled.
      java.util.List<Account.Requirements.Errors> getErrors()
      The fields that are currently_due and need to be collected again because validation or verification failed for some reason.
      java.util.List<java.lang.String> getEventuallyDue()
      Fields that need to be collected assuming all volume thresholds are reached.
      java.util.List<java.lang.String> getPastDue()
      Fields that weren't collected by the account's current_deadline.
      java.util.List<java.lang.String> getPendingVerification()
      Fields that may become required depending on the results of verification or review.
      int hashCode()  
      void setCurrentlyDue​(java.util.List<java.lang.String> currentlyDue)
      Fields that need to be collected to keep the person's account enabled.
      void setErrors​(java.util.List<Account.Requirements.Errors> errors)
      The fields that are currently_due and need to be collected again because validation or verification failed for some reason.
      void setEventuallyDue​(java.util.List<java.lang.String> eventuallyDue)
      Fields that need to be collected assuming all volume thresholds are reached.
      void setPastDue​(java.util.List<java.lang.String> pastDue)
      Fields that weren't collected by the account's current_deadline.
      void setPendingVerification​(java.util.List<java.lang.String> pendingVerification)
      Fields that may become required depending on the results of verification or review.
      • Methods inherited from class java.lang.Object

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

      • Requirements

        public Requirements()
    • Method Detail

      • getCurrentlyDue

        public java.util.List<java.lang.String> getCurrentlyDue()
        Fields that need to be collected to keep the person's account enabled. If not collected by the account's current_deadline, these fields appear in past_due as well, and the account is disabled.
      • getErrors

        public java.util.List<Account.Requirements.Errors> getErrors()
        The fields that are currently_due and need to be collected again because validation or verification failed for some reason.
      • getEventuallyDue

        public java.util.List<java.lang.String> getEventuallyDue()
        Fields that need to be collected assuming all volume thresholds are reached. As fields are needed, they are moved to currently_due and the account's current_deadline is set.
      • getPastDue

        public java.util.List<java.lang.String> getPastDue()
        Fields that weren't collected by the account's current_deadline. These fields need to be collected to enable payouts for the person's account.
      • getPendingVerification

        public java.util.List<java.lang.String> getPendingVerification()
        Fields that may become required depending on the results of verification or review. An empty array unless an asynchronous verification is pending. If verification fails, the fields in this array become required and move to currently_due or past_due.
      • setCurrentlyDue

        public void setCurrentlyDue​(java.util.List<java.lang.String> currentlyDue)
        Fields that need to be collected to keep the person's account enabled. If not collected by the account's current_deadline, these fields appear in past_due as well, and the account is disabled.
      • setErrors

        public void setErrors​(java.util.List<Account.Requirements.Errors> errors)
        The fields that are currently_due and need to be collected again because validation or verification failed for some reason.
      • setEventuallyDue

        public void setEventuallyDue​(java.util.List<java.lang.String> eventuallyDue)
        Fields that need to be collected assuming all volume thresholds are reached. As fields are needed, they are moved to currently_due and the account's current_deadline is set.
      • setPastDue

        public void setPastDue​(java.util.List<java.lang.String> pastDue)
        Fields that weren't collected by the account's current_deadline. These fields need to be collected to enable payouts for the person's account.
      • setPendingVerification

        public void setPendingVerification​(java.util.List<java.lang.String> pendingVerification)
        Fields that may become required depending on the results of verification or review. An empty array unless an asynchronous verification is pending. If verification fails, the fields in this array become required and move to currently_due or past_due.
      • equals

        public boolean equals​(java.lang.Object o)
        Overrides:
        equals in class java.lang.Object
      • canEqual

        protected boolean canEqual​(java.lang.Object other)
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object