• Documentation
  • Api Reference
Show / Hide Table of Contents
  • EzBtc.Api
    • EzBtcClient
  • EzBtc.Api.Models
    • OrderBook
    • OrderBookEntry
    • Ticker
    • Transaction

Class Transaction

Represents a completed trade.

Inheritance
System.Object
Transaction
Namespace: EzBtc.Api.Models
Assembly: EzBtc.Api.dll
Syntax
public class Transaction

Properties

| Improve this Doc View Source

Amount

The amount of XBT executed.

Declaration
[JsonProperty("amount")]
public decimal Amount { get; set; }
Property Value
Type Description
System.Decimal
| Improve this Doc View Source

Pair

The pair that was traded.

Declaration
[JsonProperty("pair")]
public string Pair { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Rate

The rate per XBT.

Declaration
[JsonProperty("rate")]
public decimal Rate { get; set; }
Property Value
Type Description
System.Decimal
| Improve this Doc View Source

Timestamp

Unix timestamp.

Declaration
[JsonProperty("timestamp")]
public double Timestamp { get; set; }
Property Value
Type Description
System.Double
| Improve this Doc View Source

TradeId

A unique identifier for the trade.

Declaration
[JsonProperty("trade_id")]
public int TradeId { get; set; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

Type

Either "buy" or "sell", indicating the type of the taker order.

Declaration
[JsonProperty("type")]
public string Type { get; set; }
Property Value
Type Description
System.String
  • Improve this Doc
  • View Source
Back to top Generated by DocFX