case class ApplicationFeeList(data: List[ApplicationFee], hasMore: Boolean = false, totalCount: Option[Int] = None, url: String = "", raw: Option[JValue] = None) extends StripeObject with StripeList[ApplicationFee] with Product with Serializable
- Alphabetic
- By Inheritance
- ApplicationFeeList
- Serializable
- Serializable
- Product
- Equals
- StripeList
- StripeObject
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new ApplicationFeeList(data: List[ApplicationFee], hasMore: Boolean = false, totalCount: Option[Int] = None, url: String = "", raw: Option[JValue] = None)
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
val
data: List[ApplicationFee]
- Definition Classes
- ApplicationFeeList → StripeList
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
implicit
val
formats: DefaultFormats.type
- Definition Classes
- StripeObject
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
val
hasMore: Boolean
- Definition Classes
- ApplicationFeeList → StripeList
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
val
raw: Option[JValue]
- Definition Classes
- ApplicationFeeList → StripeList → StripeObject
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
val
totalCount: Option[Int]
- Definition Classes
- ApplicationFeeList → StripeList
-
val
url: String
- Definition Classes
- ApplicationFeeList → StripeList
-
def
valueFor[T](transformer: (JValue) ⇒ JValue)(implicit mf: Manifest[T]): Box[T]
Transform the underlyingData of this StripeObject then attempt to extract an instance of the class T from it.
Transform the underlyingData of this StripeObject then attempt to extract an instance of the class T from it. This is the general implementation of extracting values from the JSON API response from Stripe.
You should only use this if you're accessing a piece of data from the raw response that we don't support. If you do find need to use this, we'd love it if you opened a pull request!
- transformer
The function that transforms the original data into the structure containing the data we want.
- returns
A Full[T] if the extraction was successful, a Failure otherwise.
- Definition Classes
- StripeObject
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
def
withRaw(raw: JValue): ApplicationFeeList
Create a copy of the StripeObject with the raw JValue representation attached.
Create a copy of the StripeObject with the raw JValue representation attached.
- raw
The raw JValue representation to attach.
- Definition Classes
- ApplicationFeeList → StripeObject