Object

org.mdedetrich.stripe.v1

Customers

Related Doc: package v1

Permalink

object Customers extends LazyLogging

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

Type Members

  1. case class Customer(id: String, accountBalance: BigDecimal, created: OffsetDateTime, currency: Option[Currency], defaultSource: Option[String], delinquent: Boolean, description: Option[String], discount: Option[Discount], email: Option[String], livemode: Boolean, metadata: Option[Map[String, String]], shipping: Shipping, sources: PaymentSourceList, subscriptions: List[Subscription]) extends StripeObject with Product with Serializable

    Permalink
  2. case class CustomerInput(accountBalance: Option[BigDecimal], coupon: Option[String], description: Option[String], email: Option[String], metadata: Map[String, String], plan: Option[String], quantity: Option[Long], shipping: Option[Shipping], source: Option[Source], taxPercent: Option[BigDecimal], trialEnd: Option[OffsetDateTime]) extends Product with Serializable

    Permalink
  3. case class CustomerList(url: String, hasMore: Boolean, data: List[Customer], totalCount: Option[Long]) extends List[Customer] with Product with Serializable

    Permalink
  4. case class CustomerListInput(created: Option[ListFilterInput], endingBefore: Option[String], limit: Option[Long], startingAfter: Option[String]) extends Product with Serializable

    Permalink
  5. case class CustomerUpdate(paymentSource: Option[Token], defaultSource: Option[String]) extends Product with Serializable

    Permalink
  6. sealed abstract class Source extends AnyRef

    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 Customer extends Serializable

    Permalink
  5. object CustomerInput extends Serializable

    Permalink
  6. object CustomerList extends ListJsonMappers[Customer] with Serializable

    Permalink
  7. object CustomerListInput extends Serializable

    Permalink
  8. object CustomerUpdate extends Serializable

    Permalink
  9. object Source

    Permalink
  10. final def asInstanceOf[T0]: T0

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

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

    Permalink
  13. implicit val customerInputReads: Reads[CustomerInput]

    Permalink
  14. implicit val customerInputWrites: Writes[CustomerInput]

    Permalink
  15. implicit val customerReads: Reads[Customer]

    Permalink
  16. implicit val customerUpdatePostParams: PostParams[CustomerUpdate]

    Permalink
  17. implicit val customerWrites: Writes[Customer]

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  24. def getCustomerJson(id: String)(implicit apiKey: ApiKey, endpoint: Endpoint): Future[Try[JsValue]]

    Permalink

    API call which does no parsing but returns the Stripe customer API response as is.

    API call which does no parsing but returns the Stripe customer API response as is.

    This is useful for when you want to use the Stripe Mobile SDK and parse the API response on the device in order to use the UI for selecting a payment method.

    See also

    https://stripe.github.io/stripe-ios/docs/Protocols/STPBackendAPIAdapter.html

  25. def hashCode(): Int

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

    Permalink
    Definition Classes
    Any
  27. def list(customerListInput: CustomerListInput, includeTotalCount: Boolean)(implicit apiKey: ApiKey, endpoint: Endpoint): Future[Try[CustomerList]]

    Permalink
  28. lazy val logger: Logger

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

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

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

    Permalink
    Definition Classes
    AnyRef
  32. implicit val sourceReads: Reads[Source]

    Permalink
  33. implicit val sourceWrites: Writes[Source]

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  36. def update(id: String, customerUpdate: CustomerUpdate)(idempotencyKey: Option[IdempotencyKey] = None)(implicit apiKey: ApiKey, endpoint: Endpoint): Future[Try[Customer]]

    Permalink
  37. final def wait(): Unit

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

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

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

Inherited from LazyLogging

Inherited from AnyRef

Inherited from Any

Ungrouped