Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,9 @@ public class CreatePositionRequest{
///Currency. Restricted to available instrument currencies
///</Summary>
public string currencyCode { get; set; }
/// <summary>
/// A user-defined reference identifying the submission of the order [Constraint: Pattern(regexp="[A-Za-z0-9_\\-]{1,30}")]
/// </summary>
public string dealReference { get; set; }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ public class OpenPositionData{
///</Summary>
public string createdDate { get; set; }
///<Summary>
///UTC Date the position was opened
///</Summary>
public string createdDateUTC { get; set; }
///<Summary>
///Deal identifier
///</Summary>
public string dealId { get; set; }
Expand Down