27 lines
652 B
Java
27 lines
652 B
Java
package ats.orders;
|
|
|
|
/**
|
|
* A ClientExtensions object allows a client to attach a clientID, tag
|
|
* and comment to Orders and Trades in their Account. Do not set,
|
|
* modify, or delete this field if your account is associated with
|
|
* MT4.
|
|
*
|
|
* @see <a href="https://developer.oanda.com/rest-live-v20/transaction-df/#ClientExtensions">OANDA API docs</a>
|
|
*/
|
|
public class ClientExtensions {
|
|
/**
|
|
* The Client ID of the Order/Trade
|
|
*/
|
|
public String id;
|
|
|
|
/**
|
|
* A tag associated with the Order/Trade
|
|
*/
|
|
public String tag;
|
|
|
|
/**
|
|
* A comment associated with the Order/Trade
|
|
*/
|
|
public String comment;
|
|
}
|