C# Class PlayFab.ClientModels.TradeInfo

Show file Open project: PlayFab/PlayFabGameServer

Public Properties

Property Type Description
AcceptedInventoryInstanceIds List
AcceptedPlayerId string
AllowedPlayerIds List
CancelledAt DateTime?
FilledAt DateTime?
InvalidatedAt DateTime?
OfferedCatalogItemIds List
OfferedInventoryInstanceIds List
OfferingPlayerId string
OpenedAt DateTime?
RequestedCatalogItemIds List
Status TradeStatus?
TradeId string

Property Details

AcceptedInventoryInstanceIds public property

Item instances from the accepting player that are used to fulfill the trade. If null, no one has accepted the trade.
public List AcceptedInventoryInstanceIds
return List

AcceptedPlayerId public property

The PlayFab ID of the player who accepted the trade. If null, no one has accepted the trade.
public string AcceptedPlayerId
return string

AllowedPlayerIds public property

An optional list of players allowed to complete this trade. If null, anybody can complete the trade.
public List AllowedPlayerIds
return List

CancelledAt public property

If set, The UTC time when this trade was canceled.
public DateTime? CancelledAt
return DateTime?

FilledAt public property

If set, The UTC time when this trade was fulfilled.
public DateTime? FilledAt
return DateTime?

InvalidatedAt public property

If set, The UTC time when this trade was made invalid.
public DateTime? InvalidatedAt
return DateTime?

OfferedCatalogItemIds public property

The catalogItem Ids of the item instances being offered.
public List OfferedCatalogItemIds
return List

OfferedInventoryInstanceIds public property

The itemInstance Ids that are being offered.
public List OfferedInventoryInstanceIds
return List

OfferingPlayerId public property

The PlayFabId for the offering player.
public string OfferingPlayerId
return string

OpenedAt public property

The UTC time when this trade was created.
public DateTime? OpenedAt
return DateTime?

RequestedCatalogItemIds public property

The catalogItem Ids requested in exchange.
public List RequestedCatalogItemIds
return List

Status public property

Describes the current state of this trade.
public TradeStatus? Status
return TradeStatus?

TradeId public property

The identifier for this trade.
public string TradeId
return string