Show / Hide Table of Contents

Class TeamRoster

Inheritance
object
TeamRoster
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: BaseballSharp.Models
Assembly: BaseballSharp.dll
Syntax
public class TeamRoster

Properties

| Edit this page View Source

PlayerFullName

The player's full name. eg: "Mike Trout"

Declaration
public string? PlayerFullName { get; set; }
Property Value
Type Description
string
| Edit this page View Source

PlayerId

The player's ID number. Useful for building other calls."

Declaration
public int? PlayerId { get; set; }
Property Value
Type Description
int?
| Edit this page View Source

PlayerPosition

The player's position name (eg: "Pitcher").

Declaration
public string? PlayerPosition { get; set; }
Property Value
Type Description
string
| Edit this page View Source

PlayerType

The player type (eg: "Pitcher").

Declaration
public string? PlayerType { get; set; }
Property Value
Type Description
string
| Edit this page View Source

PositionAbbreviation

Abbreviated form of the positin (eg: "P" for Pitcher).

Declaration
public string? PositionAbbreviation { get; set; }
Property Value
Type Description
string
| Edit this page View Source

PositionCode

The code for the position (eg: 1).

Declaration
public string? PositionCode { get; set; }
Property Value
Type Description
string
| Edit this page View Source

StatusCode

Declaration
public string? StatusCode { get; set; }
Property Value
Type Description
string
| Edit this page View Source

StatusDescription

Declaration
public string? StatusDescription { get; set; }
Property Value
Type Description
string
| Edit this page View Source

TeamId

The team's ID number. Useful for building other calls."

Declaration
public int? TeamId { get; set; }
Property Value
Type Description
int?
  • Edit this page
  • View Source
In this article
Back to top Generated by DocFX