Class FeeBumpTransaction

java.lang.Object
org.stellar.sdk.xdr.FeeBumpTransaction

public class FeeBumpTransaction extends Object
FeeBumpTransaction's original definition in the XDR file is:
 struct FeeBumpTransaction
 {
     MuxedAccount feeSource;
     int64 fee;
     union switch (EnvelopeType type)
     {
     case ENVELOPE_TYPE_TX:
         TransactionV1Envelope v1;
     }
     innerTx;
     union switch (int v)
     {
     case 0:
         void;
     }
     ext;
 };