Show / Hide Table of Contents

    Class Bid

    A raw serializable Bid class.

    Inheritance
    System.Object
    Bid
    Inherited Members
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.ToString()
    Namespace: Algorand
    Assembly: Algorand.dll
    Syntax
    [JsonObject]
    public class Bid

    Constructors

    | Improve this Doc View Source

    Bid()

    Declaration
    public Bid()
    | Improve this Doc View Source

    Bid(Address, Address, Nullable<UInt64>, Nullable<UInt64>, Nullable<UInt64>, Nullable<UInt64>)

    Create a new bid

    Declaration
    public Bid(Address bidderKey, Address auctionKey, ulong? bidCurrency, ulong? maxPrice, ulong? bidID, ulong? auctionID)
    Parameters
    Type Name Description
    Address bidderKey
    Address auctionKey
    System.Nullable<System.UInt64> bidCurrency
    System.Nullable<System.UInt64> maxPrice
    System.Nullable<System.UInt64> bidID
    System.Nullable<System.UInt64> auctionID
    | Improve this Doc View Source

    Bid(Byte[], Byte[], Nullable<UInt64>, Nullable<UInt64>, Nullable<UInt64>, Nullable<UInt64>)

    Declaration
    [JsonConstructor]
    public Bid([JsonProperty(PropertyName = "bidder")] byte[] bidderKey, [JsonProperty(PropertyName = "auc")] byte[] auctionKey, [JsonProperty(PropertyName = "cur")] ulong? bidCurrency, [JsonProperty(PropertyName = "price")] ulong? maxPrice, [JsonProperty(PropertyName = "id")] ulong? bidID, [JsonProperty(PropertyName = "aid")] ulong? auctionID)
    Parameters
    Type Name Description
    System.Byte[] bidderKey
    System.Byte[] auctionKey
    System.Nullable<System.UInt64> bidCurrency
    System.Nullable<System.UInt64> maxPrice
    System.Nullable<System.UInt64> bidID
    System.Nullable<System.UInt64> auctionID

    Fields

    | Improve this Doc View Source

    auctionID

    Declaration
    [JsonProperty(PropertyName = "aid")]
    public ulong? auctionID
    Field Value
    Type Description
    System.Nullable<System.UInt64>
    | Improve this Doc View Source

    auctionKey

    Declaration
    [JsonProperty(PropertyName = "auc")]
    public Address auctionKey
    Field Value
    Type Description
    Address
    | Improve this Doc View Source

    bidCurrency

    Declaration
    [JsonProperty(PropertyName = "cur")]
    public ulong? bidCurrency
    Field Value
    Type Description
    System.Nullable<System.UInt64>
    | Improve this Doc View Source

    bidderKey

    Declaration
    [JsonProperty(PropertyName = "bidder")]
    public Address bidderKey
    Field Value
    Type Description
    Address
    | Improve this Doc View Source

    bidID

    Declaration
    [JsonProperty(PropertyName = "id")]
    public ulong? bidID
    Field Value
    Type Description
    System.Nullable<System.UInt64>
    | Improve this Doc View Source

    maxPrice

    Declaration
    [JsonProperty(PropertyName = "price")]
    public ulong? maxPrice
    Field Value
    Type Description
    System.Nullable<System.UInt64>

    Methods

    | Improve this Doc View Source

    Equals(Object)

    Declaration
    public override bool Equals(object o)
    Parameters
    Type Name Description
    System.Object o
    Returns
    Type Description
    System.Boolean
    Overrides
    System.Object.Equals(System.Object)
    | Improve this Doc View Source

    GetHashCode()

    Declaration
    public override int GetHashCode()
    Returns
    Type Description
    System.Int32
    Overrides
    System.Object.GetHashCode()
    • Improve this Doc
    • View Source
    Back to top Generated by DocFX