C# Class PlayFab.AdminModels.BanInfo

Show file Open project: PlayFab/PlayFabGameServer

Public Properties

Property Type Description
Active bool
BanId string
Created DateTime?
Expires DateTime?
IPAddress string
MACAddress string
PlayFabId string
Reason string

Property Details

Active public property

The active state of this ban. Expired bans may still have this value set to true but they will have no effect.
public bool Active
return bool

BanId public property

The unique Ban Id associated with this ban.
public string BanId
return string

Created public property

The time when this ban was applied.
public DateTime? Created
return DateTime?

Expires public property

The time when this ban expires. Permanent bans do not have expiration date.
public DateTime? Expires
return DateTime?

IPAddress public property

The IP address on which the ban was applied. May affect multiple players.
public string IPAddress
return string

MACAddress public property

The MAC address on which the ban was applied. May affect multiple players.
public string MACAddress
return string

PlayFabId public property

Unique PlayFab assigned ID of the user on whom the operation will be performed.
public string PlayFabId
return string

Reason public property

The reason why this ban was applied.
public string Reason
return string