Class ExportablePlayerProfile
- Namespace
- Sportradar.OddsFeed.SDK.Entities.Rest.Caching.Exportable
- Assembly
- Sportradar.OddsFeed.SDK.dll
Class used to export/import player profile cache item properties
[Serializable]
public class ExportablePlayerProfile : ExportableBase
- Inheritance
-
ExportablePlayerProfile
- Inherited Members
Properties
Abbreviation
A string representing the abbreviation
public string Abbreviation { get; set; }
Property Value
CompetitorId
The competitor id this player belongs to
public string CompetitorId { get; set; }
Property Value
CountryCode
Gets the country code
public string CountryCode { get; set; }
Property Value
DateOfBirth
A DateTime representing the date of birth
public DateTime? DateOfBirth { get; set; }
Property Value
FullName
Gets the full name of the player
public string FullName { get; set; }
Property Value
Gender
A string representing the gender
public string Gender { get; set; }
Property Value
Height
A int representing the height
public int? Height { get; set; }
Property Value
- int?
Nationalities
A IDictionary<TKey, TValue> containing nationalities in different languages
public IDictionary<CultureInfo, string> Nationalities { get; set; }
Property Value
Nickname
Gets the nickname of the player
public string Nickname { get; set; }
Property Value
Type
A string representing the type
public string Type { get; set; }
Property Value
Weight
A int representing the weight
public int? Weight { get; set; }
Property Value
- int?