Class Account.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<Account.Requirements.Alternative> getAlternatives()
      Fields that are due and can be satisfied by providing the corresponding alternative fields instead.
      java.lang.Long getCurrentDeadline()
      Date by which the fields in currently_due must be collected to keep the account enabled.
      java.util.List<java.lang.String> getCurrentlyDue()
      Fields that need to be collected to keep the account enabled.
      java.lang.String getDisabledReason()
      If the account is disabled, this string describes why.
      java.util.List<Account.Requirements.Errors> getErrors()
      Fields that are currently_due and need to be collected again because validation or verification failed.
      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 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 setAlternatives​(java.util.List<Account.Requirements.Alternative> alternatives)
      Fields that are due and can be satisfied by providing the corresponding alternative fields instead.
      void setCurrentDeadline​(java.lang.Long currentDeadline)
      Date by which the fields in currently_due must be collected to keep the account enabled.
      void setCurrentlyDue​(java.util.List<java.lang.String> currentlyDue)
      Fields that need to be collected to keep the account enabled.
      void setDisabledReason​(java.lang.String disabledReason)
      If the account is disabled, this string describes why.
      void setErrors​(java.util.List<Account.Requirements.Errors> errors)
      Fields that are currently_due and need to be collected again because validation or verification failed.
      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 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

      • getAlternatives

        public java.util.List<Account.Requirements.Alternative> getAlternatives()
        Fields that are due and can be satisfied by providing the corresponding alternative fields instead.
      • getCurrentDeadline

        public java.lang.Long getCurrentDeadline()
        Date by which the fields in currently_due must be collected to keep the account enabled. These fields may disable the account sooner if the next threshold is reached before they are collected.
      • getCurrentlyDue

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

        public java.lang.String getDisabledReason()
        If the account is disabled, this string describes why. Can be requirements.past_due, requirements.pending_verification, listed, platform_paused, rejected.fraud, rejected.listed, rejected.terms_of_service, rejected.other, under_review, or other.
      • getErrors

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

        public java.util.List<java.lang.String> getEventuallyDue()
        Fields that need to be collected assuming all volume thresholds are reached. As they become required, they appear in currently_due as well, and current_deadline becomes set.
      • getPastDue

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

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

        public void setAlternatives​(java.util.List<Account.Requirements.Alternative> alternatives)
        Fields that are due and can be satisfied by providing the corresponding alternative fields instead.
      • setCurrentDeadline

        public void setCurrentDeadline​(java.lang.Long currentDeadline)
        Date by which the fields in currently_due must be collected to keep the account enabled. These fields may disable the account sooner if the next threshold is reached before they are collected.
      • setCurrentlyDue

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

        public void setDisabledReason​(java.lang.String disabledReason)
        If the account is disabled, this string describes why. Can be requirements.past_due, requirements.pending_verification, listed, platform_paused, rejected.fraud, rejected.listed, rejected.terms_of_service, rejected.other, under_review, or other.
      • setErrors

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

        public void setEventuallyDue​(java.util.List<java.lang.String> eventuallyDue)
        Fields that need to be collected assuming all volume thresholds are reached. As they become required, they appear in currently_due as well, and current_deadline becomes set.
      • setPastDue

        public void setPastDue​(java.util.List<java.lang.String> pastDue)
        Fields that weren't collected by current_deadline. These fields need to be collected to enable the 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. Will be an empty array unless an asynchronous verification is pending. If verification fails, these fields move to eventually_due, 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