Object

org.mdedetrich.stripe.v1

Transfers

Related Doc: package v1

Permalink

object Transfers extends LazyLogging

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

Type Members

  1. sealed abstract class FailureCode extends EnumEntry

    Permalink

    See also

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

  2. sealed abstract class SourceType extends EnumEntry

    Permalink
  3. sealed abstract class Status extends EnumEntry

    Permalink
  4. case class Transfer(id: String, amount: BigDecimal, amountReversed: BigDecimal, applicationFee: Option[BigDecimal], balanceTransaction: String, bankAccount: Option[BankAccount], created: OffsetDateTime, currency: Currency, date: OffsetDateTime, description: Option[String], destination: String, destinationPayment: Option[String], failureCode: Option[FailureCode], failureMessage: Option[String], livemode: Boolean, metadata: Option[Map[String, String]], recipient: Option[String], reversals: TransferReversalList, reversed: Boolean, sourceTransaction: Option[String], sourceType: SourceType, statementDescriptor: Option[String], status: Status, type: Type) extends Product with Serializable

    Permalink
  5. case class TransferInput(amount: BigDecimal, currency: Currency, destination: String, description: Option[String], metadata: Option[Map[String, String]], sourceTransaction: Option[String], statementDescriptor: Option[String], stripeAccount: Option[String], sourceType: Option[SourceType]) extends Product with Serializable

    Permalink

    amount

    A positive integer in cents representing how much to transfer.

    currency

    3-letter ISO code for currency.

    destination

    The id of a bank account or a card to send the transfer to, or the string default_for_currency to use the default external account for the specified currency. If you use Stripe Connect, this can be the the id of a connected Stripe account; see the details about when such transfers are permitted.

    description

    An arbitrary string which you can attach to a transfer object. It is displayed when in the web interface alongside the transfer.

    metadata

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

    sourceTransaction

    You can use this parameter to transfer funds from a charge (or other transaction) before they are added to your available balance. A pending balance will transfer immediately but the funds will not become available until the original charge becomes available. See the Connect documentation for details.

    statementDescriptor

    A string to be displayed on the recipient's bank or card statement. This may be at most 22 characters. Attempting to use a statementDescriptor longer than 22 characters will return an error. Note: Most banks will truncate this information and/or display it inconsistently. Some may not display it at all.

    stripeAccount

    The Stripe Connect managed account on whose behalf the transfer should be initiated.

    sourceType

    The source balance to draw this transfer from. Balances for different payment sources are kept separately. You can find the amounts with the balances API. Valid options are: SourceType.AlipayAccount, SourceType.BankAccount, SourceType.BitcoinReceiver, and SourceType.Card.

    Exceptions thrown

    StatementDescriptorInvalidCharacter - If statementDescriptor has an invalid character

    StatementDescriptorTooLong - If statementDescriptor is longer than 22 characters

    See also

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

  6. case class TransferList(url: String, hasMore: Boolean, data: List[Transfer], totalCount: Option[Long]) extends List[Transfer] with Product with Serializable

    Permalink
  7. case class TransferListInput(created: Option[ListFilterInput], date: Option[ListFilterInput], destination: Option[String], endingBefore: Option[String], limit: Option[String], recipient: Option[String], startingAfter: Option[String], status: Option[Status]) extends Product with Serializable

    Permalink
  8. case class TransferReversalList(url: String, hasMore: Boolean, data: List[TransferReversal], totalCount: Option[Long]) extends List[TransferReversal] with Product with Serializable

    Permalink
  9. sealed abstract class Type 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 FailureCode extends Enum[FailureCode]

    Permalink
  5. object SourceType extends Enum[SourceType]

    Permalink
  6. object Status extends Enum[Status]

    Permalink
  7. object TransferInput extends Serializable

    Permalink
  8. object TransferList extends ListJsonMappers[Transfer] with Serializable

    Permalink
  9. object TransferListInput extends Serializable

    Permalink
  10. object TransferReversalList extends ListJsonMappers[TransferReversal] with Serializable

    Permalink
  11. object Type extends Enum[Type]

    Permalink
  12. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  13. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  14. def create(transferInput: TransferInput)(idempotencyKey: Option[IdempotencyKey] = None)(implicit apiKey: ApiKey, endpoint: Endpoint): Future[Try[Transfer]]

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  17. implicit val failureCodeFormats: Format[FailureCode]

    Permalink
  18. def finalize(): Unit

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

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

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

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

    Permalink
    Definition Classes
    Any
  23. def list(transferListInput: TransferListInput, includeTotalCount: Boolean)(implicit apiKey: ApiKey, endpoint: Endpoint): Future[Try[TransferList]]

    Permalink
  24. lazy val logger: Logger

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

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

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

    Permalink
    Definition Classes
    AnyRef
  28. implicit val sourceTypeFormats: Format[SourceType]

    Permalink
  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. implicit val transferReads: Reads[Transfer]

    Permalink
  33. implicit val transferWrites: Writes[Transfer]

    Permalink
  34. implicit val typeFormats: Format[Type]

    Permalink
  35. final def wait(): Unit

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

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

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

Inherited from LazyLogging

Inherited from AnyRef

Inherited from Any

Ungrouped