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.lang.Long getCurrentDeadline()
      The date the fields in currently_due must be collected by to keep payouts enabled for the account.
      java.util.List<java.lang.String> getCurrentlyDue()
      The fields that need to be collected to keep the account enabled.
      java.lang.String getDisabledReason()
      If the account is disabled, this string describes why the account can’t create charges or receive payouts.
      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()
      The fields that need to be collected assuming all volume thresholds are reached.
      java.util.List<java.lang.String> getPastDue()
      The fields that weren't collected by the 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 setCurrentDeadline​(java.lang.Long currentDeadline)
      The date the fields in currently_due must be collected by to keep payouts enabled for the account.
      void setCurrentlyDue​(java.util.List<java.lang.String> currentlyDue)
      The 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 the account can’t create charges or receive payouts.
      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)
      The fields that need to be collected assuming all volume thresholds are reached.
      void setPastDue​(java.util.List<java.lang.String> pastDue)
      The fields that weren't collected by the 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

      • getCurrentDeadline

        public java.lang.Long getCurrentDeadline()
        The date the fields in currently_due must be collected by to keep payouts enabled for the account. These fields might block payouts sooner if the next threshold is reached before these fields are collected.
      • getCurrentlyDue

        public java.util.List<java.lang.String> getCurrentlyDue()
        The fields that need to be collected to keep the account enabled. If not collected by the 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 the account can’t create charges or receive payouts. Can be requirements.past_due, requirements.pending_verification, rejected.fraud, rejected.terms_of_service, rejected.listed, rejected.other, listed, under_review, or other.
      • 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()
        The fields that need to be collected assuming all volume thresholds are reached. As they become required, these fields appear in currently_due as well, and the current_deadline is set.
      • getPastDue

        public java.util.List<java.lang.String> getPastDue()
        The fields that weren't collected by the current_deadline. These fields need to be collected to re-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. 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.
      • setCurrentDeadline

        public void setCurrentDeadline​(java.lang.Long currentDeadline)
        The date the fields in currently_due must be collected by to keep payouts enabled for the account. These fields might block payouts sooner if the next threshold is reached before these fields are collected.
      • setCurrentlyDue

        public void setCurrentlyDue​(java.util.List<java.lang.String> currentlyDue)
        The fields that need to be collected to keep the account enabled. If not collected by the 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 the account can’t create charges or receive payouts. Can be requirements.past_due, requirements.pending_verification, rejected.fraud, rejected.terms_of_service, rejected.listed, rejected.other, listed, under_review, or other.
      • 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)
        The fields that need to be collected assuming all volume thresholds are reached. As they become required, these fields appear in currently_due as well, and the current_deadline is set.
      • setPastDue

        public void setPastDue​(java.util.List<java.lang.String> pastDue)
        The fields that weren't collected by the current_deadline. These fields need to be collected to re-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. 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