Object

org.mdedetrich.stripe.v1

BankAccounts

Related Doc: package v1

Permalink

object BankAccounts extends LazyLogging

Linear Supertypes
LazyLogging, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BankAccounts
  2. LazyLogging
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. sealed abstract class AccountHolderType extends EnumEntry

    Permalink
  2. case class BankAccount(id: String, account: Option[String], accountHolderName: Option[String], accountHolderType: Option[AccountHolderType], bankName: String, country: String, currency: Currency, defaultForCurrency: Option[Boolean], fingerprint: String, last4: String, metadata: Option[Map[String, String]], name: Option[String], routingNumber: String, status: Status) extends StripeObject with Product with Serializable

    Permalink

    accountHolderName

    The name of the person or business that owns the bank account.

    accountHolderType

    The type of entity that holds the account. This can be either AccountHolderType.Individual or AccountHolderType.Company

    bankName

    Name of the bank associated with the routing number, e.g. WELLS FARGO

    country

    Two-letter ISO code representing the country the bank account is located in.

    currency

    Three-letter ISO currency code representing the currency paid out to the bank account.

    defaultForCurrency

    This indicates whether or not this bank account is the default external account for its currency.

    fingerprint

    Uniquely identifies this particular bank account. You can use this attribute to check whether two bank accounts are the same.

    metadata

    A set of key/value pairs that you can attach to a bank account object. It can be useful for storing additional information about the bank account in a structured format.

    routingNumber

    The routing transit number for the bank account.

    status

    Possible values are new, Status.Validated, Status.Verified, Status.VerificationFailed, or errored. A bank account that hasn’t had any activity or validation performed is new. If Stripe can determine that the bank account exists, its status will be validated. Note that there often isn’t enough information to know (e.g. for smaller credit unions), and the validation is not always run. If customer bank account verification has succeeded, the bank account status will be verified. If the verification failed for any reason, such as microdeposit failure, the status will be Status.VerificationFailed. If a transfer sent to this bank account fails, we’ll set the status to errored and will not continue to send transfers until the bank details are updated.

  3. sealed abstract class BankAccountData extends AnyRef

    Permalink

    See also

    https://stripe.com/docs/api#create_bank_account-source | external_account

  4. case class BankAccountInput(bankAccountData: BankAccountData, defaultForCurrency: Option[Currency], metadata: Option[Map[String, String]]) extends Product with Serializable

    Permalink

    bankAccountData

    When adding a bank account to a customer, the parameter name is BankAccountData.Source. When adding to an account, the parameter name is BankAccountData.ExternalAccount. The value can either be a token, like the ones returned by Stripe.js, or a dictionary containing a user’s bank account details (with the options shown below).

    defaultForCurrency

    If you set this to true (or if this is the first external account being added in this currency) this bank account will become the default external account for its currency.

    metadata

    A set of key/value pairs that you can attach to an external account object. It can be useful for storing additional information about the external account in a structured format.

    See also

    https://stripe.com/docs/api#create_bank_account

  5. case class BankAccountList(url: String, hasMore: Boolean, data: List[BankAccount], totalCount: Option[Long]) extends List[BankAccount] with Product with Serializable

    Permalink
  6. case class BankAccountListInput(endingBefore: Option[String], limit: Option[Long], startingAfter: Option[String]) extends Product with Serializable

    Permalink

    endingBefore

    A cursor for use in pagination. endingBefore is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with obj_bar, your subsequent call can include endingBefore=obj_bar in order to fetch the previous page of the list.

    limit

    A limit on the number of objects to be returned. Limit can range between 1 and 100 items.

    startingAfter

    A cursor for use in pagination. startingAfter is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include startingAfter=obj_foo in order to fetch the next page of the list.

    See also

    https://stripe.com/docs/api#list_bank_accounts

  7. sealed abstract class Status extends EnumEntry

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object AccountHolderType extends Enum[AccountHolderType]

    Permalink
  5. object BankAccountData

    Permalink
  6. object BankAccountList extends ListJsonMappers[BankAccount] with Serializable

    Permalink
  7. object BankAccountListInput extends Serializable

    Permalink
  8. object Status extends Enum[Status]

    Permalink
  9. implicit val accountHolderTypeFormats: Format[AccountHolderType]

    Permalink
  10. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  11. implicit val bankAccountDataWrites: Writes[BankAccountData]

    Permalink
  12. implicit val bankAccountReads: Reads[BankAccount]

    Permalink
  13. implicit val bankAccountWrites: Writes[BankAccount]

    Permalink
  14. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  15. def create(customerId: String, bankAccountInput: BankAccountInput)(idempotencyKey: Option[IdempotencyKey] = None)(implicit apiKey: ApiKey, endpoint: Endpoint): Future[Try[BankAccount]]

    Permalink
  16. def delete(customerId: String, bankAccountId: String)(idempotencyKey: Option[IdempotencyKey] = None)(implicit apiKey: ApiKey, endpoint: Endpoint): Future[Try[DeleteResponse]]

    Permalink
  17. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  18. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  19. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. def get(customerId: String, bankAccountId: String)(implicit apiKey: ApiKey, endpoint: Endpoint): Future[Try[BankAccount]]

    Permalink
  21. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  22. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  23. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  24. def list(customerId: String, bankAccountListInput: BankAccountListInput, includeTotalCount: Boolean)(implicit apiKey: ApiKey, endpoint: Endpoint): Future[Try[BankAccountList]]

    Permalink
  25. lazy val logger: Logger

    Permalink
    Attributes
    protected
    Definition Classes
    LazyLogging
  26. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  27. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  28. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  29. implicit val statusFormats: Format[Status]

    Permalink
  30. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  31. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  32. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from LazyLogging

Inherited from AnyRef

Inherited from Any

Ungrouped