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, livemode: Boolean, delinquent: Boolean, sources: PaymentSourceList, subscriptions: SubscriptionList, currency: Option[Currency] = None, defaultSource: Option[String] = None, description: Option[String] = None, discount: Option[Discount] = None, email: Option[String] = None, metadata: Option[Map[String, String]] = None, shipping: Option[Shipping] = None) extends StripeObject with Product with Serializable

    Permalink
  2. case class CustomerInput(accountBalance: Option[BigDecimal] = None, coupon: Option[String] = None, description: Option[String] = None, email: Option[String] = None, metadata: Map[String, String] = Map.empty, plan: Option[String] = None, quantity: Option[Long] = None, shipping: Option[Shipping] = None, source: Option[Source] = None, taxPercent: Option[BigDecimal] = None, trialEnd: Option[OffsetDateTime] = None) 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] = None, endingBefore: Option[String] = None, limit: Option[Long] = None, startingAfter: Option[String] = None) extends Product with Serializable

    Permalink
  5. case class CustomerUpdate(paymentSource: Option[Token] = None, defaultSource: Option[String] = None) 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 CustomerList extends ListJsonMappers[Customer] with Serializable

    Permalink
  5. object Source

    Permalink
  6. final def asInstanceOf[T0]: T0

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

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

    Permalink
  9. implicit val customerDecoder: Decoder[Customer]

    Permalink
  10. implicit val customerEncoder: Encoder[Customer]

    Permalink
  11. implicit val customerInputDecoder: Decoder[CustomerInput]

    Permalink
  12. implicit val customerInputEncoder: Encoder[CustomerInput]

    Permalink
  13. implicit val customerUpdatePostParams: PostParams[CustomerUpdate]

    Permalink
  14. def delete(id: String)(idempotencyKey: Option[IdempotencyKey] = None)(implicit apiKey: ApiKey, endpoint: Endpoint, client: HttpExt, materializer: Materializer, executionContext: ExecutionContext): Future[Try[DeleteResponse]]

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  20. def getCustomerJson(id: String)(implicit apiKey: ApiKey, endpoint: Endpoint, client: HttpExt, materializer: Materializer, executionContext: ExecutionContext): Future[Try[Json]]

    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

  21. def hashCode(): Int

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

    Permalink
    Definition Classes
    Any
  23. def list(customerListInput: CustomerListInput, includeTotalCount: Boolean)(implicit apiKey: ApiKey, endpoint: Endpoint, client: HttpExt, materializer: Materializer, executionContext: ExecutionContext): Future[Try[CustomerList]]

    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 sourceDecoder: Decoder[Source]

    Permalink
  29. implicit val sourceEncoder: Encoder[Source]

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

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

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

    Permalink
  33. final def wait(): Unit

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

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

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

Inherited from LazyLogging

Inherited from AnyRef

Inherited from Any

Ungrouped