Package com.stripe.model
Class Person.Requirements
- java.lang.Object
-
- com.stripe.model.StripeObject
-
- com.stripe.model.Person.Requirements
-
- All Implemented Interfaces:
StripeObjectInterface
- Enclosing class:
- Person
public static class Person.Requirements extends StripeObject
-
-
Field Summary
-
Fields inherited from class com.stripe.model.StripeObject
PRETTY_PRINT_GSON
-
-
Constructor Summary
Constructors Constructor Description Requirements()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(java.lang.Object other)booleanequals(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()Fields that arecurrently_dueand 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 the account'scurrent_deadline.java.util.List<java.lang.String>getPendingVerification()Fields that may become required depending on the results of verification or review.inthashCode()voidsetCurrentlyDue(java.util.List<java.lang.String> currentlyDue)Fields that need to be collected to keep the person's account enabled.voidsetErrors(java.util.List<Account.Requirements.Errors> errors)Fields that arecurrently_dueand need to be collected again because validation or verification failed.voidsetEventuallyDue(java.util.List<java.lang.String> eventuallyDue)Fields that need to be collected assuming all volume thresholds are reached.voidsetPastDue(java.util.List<java.lang.String> pastDue)Fields that weren't collected by the account'scurrent_deadline.voidsetPendingVerification(java.util.List<java.lang.String> pendingVerification)Fields that may become required depending on the results of verification or review.-
Methods inherited from class com.stripe.model.StripeObject
equals, getLastResponse, getRawJsonObject, setLastResponse, toJson, toString
-
-
-
-
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'scurrent_deadline, these fields appear inpast_dueas well, and the account is disabled.
-
getErrors
public java.util.List<Account.Requirements.Errors> getErrors()
Fields that arecurrently_dueand 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 incurrently_dueas well, and the account'scurrent_deadlinebecomes set.
-
getPastDue
public java.util.List<java.lang.String> getPastDue()
Fields that weren't collected by the account'scurrent_deadline. These fields need to be collected to enable 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. Will be an empty array unless an asynchronous verification is pending. If verification fails, these fields move toeventually_due,currently_due, orpast_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'scurrent_deadline, these fields appear inpast_dueas well, and the account is disabled.
-
setErrors
public void setErrors(java.util.List<Account.Requirements.Errors> errors)
Fields that arecurrently_dueand 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 incurrently_dueas well, and the account'scurrent_deadlinebecomes set.
-
setPastDue
public void setPastDue(java.util.List<java.lang.String> pastDue)
Fields that weren't collected by the account'scurrent_deadline. These fields need to be collected to enable 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. Will be an empty array unless an asynchronous verification is pending. If verification fails, these fields move toeventually_due,currently_due, orpast_due.
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
canEqual
protected boolean canEqual(java.lang.Object other)
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-