package response
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
- case class AccountResponse(id: PublicKey, lastSequence: Long, subEntryCount: Int, thresholds: Thresholds, authRequired: Boolean, authRevocable: Boolean, balances: List[Balance], signers: List[Signer], data: Map[String, Array[Byte]]) extends Product with Serializable
- case class AssetResponse(asset: NonNativeAsset, amount: Long, numAccounts: Int, authRequired: Boolean, authRevocable: Boolean) extends Product with Serializable
- case class DataValueResponse(v: String) extends Product with Serializable
- case class EffectAccountCreated(id: String, account: PublicKeyOps, startingBalance: NativeAmount) extends EffectResponse with Product with Serializable
- case class EffectAccountCredited(id: String, account: PublicKeyOps, amount: Amount) extends EffectResponse with Product with Serializable
- case class EffectAccountDebited(id: String, account: PublicKeyOps, amount: Amount) extends EffectResponse with Product with Serializable
- case class EffectAccountFlagsUpdated(id: String, account: PublicKeyOps) extends EffectResponse with Product with Serializable
- case class EffectAccountHomeDomainUpdated(id: String, account: PublicKeyOps, domain: String) extends EffectResponse with Product with Serializable
- case class EffectAccountInflationDestinationUpdated(id: String, account: PublicKeyOps) extends EffectResponse with Product with Serializable
- case class EffectAccountRemoved(id: String, account: PublicKeyOps) extends EffectResponse with Product with Serializable
- case class EffectAccountThresholdsUpdated(id: String, account: PublicKeyOps, thresholds: Thresholds) extends EffectResponse with Product with Serializable
- case class EffectDataCreated(id: String, account: PublicKeyOps) extends EffectResponse with Product with Serializable
- case class EffectDataRemoved(id: String, account: PublicKeyOps) extends EffectResponse with Product with Serializable
- case class EffectDataUpdated(id: String, account: PublicKeyOps) extends EffectResponse with Product with Serializable
- sealed trait EffectResponse extends AnyRef
- case class EffectSequenceBumped(id: String, account: PublicKeyOps, newSeq: Long) extends EffectResponse with Product with Serializable
- case class EffectSignerCreated(id: String, account: PublicKeyOps, weight: Short, publicKey: String) extends EffectResponse with Product with Serializable
- case class EffectSignerRemoved(id: String, account: PublicKeyOps, publicKey: String) extends EffectResponse with Product with Serializable
- case class EffectSignerUpdated(id: String, account: PublicKeyOps, weight: Short, publicKey: String) extends EffectResponse with Product with Serializable
- case class EffectTrade(id: String, offerId: Long, buyer: PublicKeyOps, bought: Amount, seller: PublicKeyOps, sold: Amount) extends EffectResponse with Product with Serializable
- case class EffectTrustLineAuthorized(id: String, trustor: PublicKeyOps, asset: NonNativeAsset) extends EffectResponse with Product with Serializable
- case class EffectTrustLineCreated(id: String, account: PublicKeyOps, limit: IssuedAmount) extends EffectResponse with Product with Serializable
- case class EffectTrustLineDeauthorized(id: String, trustor: PublicKeyOps, asset: NonNativeAsset) extends EffectResponse with Product with Serializable
- case class EffectTrustLineRemoved(id: String, account: PublicKeyOps, asset: NonNativeAsset) extends EffectResponse with Product with Serializable
- case class EffectTrustLineUpdated(id: String, account: PublicKeyOps, limit: IssuedAmount) extends EffectResponse with Product with Serializable
- case class FederationResponse(address: String, account: PublicKey, memo: Memo = NoMemo) extends Product with Serializable
- case class FeeStatsResponse(lastLedger: Long, lastLedgerBaseFee: NativeAmount, ledgerCapacityUsage: Double, minAcceptedFee: NativeAmount, modeAcceptedFee: NativeAmount, acceptedFeePercentiles: Map[Int, NativeAmount]) extends Product with Serializable
- case class LedgerResponse(id: String, hash: String, previousHash: Option[String], sequence: Long, successTransactionCount: Int, failureTransactionCount: Int, operationCount: Int, closedAt: ZonedDateTime, totalCoins: NativeAmount, feePool: NativeAmount, baseFee: NativeAmount, baseReserve: NativeAmount, maxTxSetSize: Int) extends Product with Serializable
-
case class
NetworkInfo(horizonVersion: String, coreVersion: String, earliestLedger: Long, latestLedger: Long, passphrase: String, currentProtocolVersion: Int, supportedProtocolVersion: Int) extends Product with Serializable
Information on the network, as provided by the Horizon root document.
- case class OfferResponse(id: Long, seller: PublicKeyOps, selling: Amount, buying: Asset, price: Price, lastModifiedLedger: Long, lastModifiedTime: ZonedDateTime) extends Product with Serializable
- case class ResponseParseException(doc: String, cause: Throwable) extends Exception with Product with Serializable
- class ResponseParser[T] extends CustomSerializer[T]
-
case class
TransactionApproved(hash: String, ledger: Long, envelopeXDR: String, resultXDR: String, resultMetaXDR: String) extends TransactionPostResponse with Product with Serializable
The data returned from Horizon when a transaction post was accepted into a ledger.
- sealed abstract class TransactionPostResponse extends AnyRef
-
case class
TransactionRejected(status: Int, detail: String, resultCode: String, opResultCodes: Seq[String], envelopeXDR: String, resultXDR: String) extends TransactionPostResponse with Product with Serializable
The data returned from Horizon when a transaction post was rejected.
Value Members
- object AccountRespDeserializer extends ResponseParser[AccountResponse]
- object AssetRespDeserializer extends ResponseParser[AssetResponse]
- object DataValueRespDeserializer extends ResponseParser[DataValueResponse]
- object EffectResponseDeserializer extends ResponseParser[EffectResponse]
- object FederationResponseDeserialiser extends ResponseParser[FederationResponse]
- object FeeStatsRespDeserializer extends ResponseParser[FeeStatsResponse]
- object LedgerRespDeserializer extends ResponseParser[LedgerResponse]
- object NetworkInfoDeserializer extends ResponseParser[NetworkInfo]
- object OfferRespDeserializer extends ResponseParser[OfferResponse]
- object TransactionPostResponseDeserializer extends ResponseParser[TransactionPostResponse]