Class ManageBuyOfferOp

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

public class ManageBuyOfferOp extends Object
ManageBuyOfferOp's original definition in the XDR file is:
 struct ManageBuyOfferOp
 {
     Asset selling;
     Asset buying;
     int64 buyAmount; // amount being bought. if set to 0, delete the offer
     Price price;     // price of thing being bought in terms of what you are
                      // selling

     // 0=create a new offer, otherwise edit an existing offer
     int64 offerID;
 };