Class TeamDetails
Team and team user details.
Inheritance
System.Object
TeamDetails
Namespace: BoldSign.Model
Assembly: BoldSign.Api.dll
Syntax
public class TeamDetails : object
Constructors
| Improve this Doc View SourceTeamDetails(String, String, Int64, Int64, List<TeamUsers>)
Initializes a new instance of the TeamDetails class.
Declaration
public TeamDetails(string teamId = null, string teamName = null, long createdDate = null, long modifiedDate = null, List<TeamUsers> users = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | teamId | Gets or sets the team id. |
System.String | teamName | Gets or sets the team name. |
System.Int64 | createdDate | Gets or sets the created date. |
System.Int64 | modifiedDate | Gets or sets the modified date. |
List<TeamUsers> | users | Gets or sets list of users. |
Properties
| Improve this Doc View SourceCreatedDate
Gets or sets the created date.
Declaration
public long CreatedDate { get; set; }
Property Value
Type | Description |
---|---|
System.Int64 |
ModifiedDate
Gets or sets the modified date.
Declaration
public long ModifiedDate { get; set; }
Property Value
Type | Description |
---|---|
System.Int64 |
TeamId
Gets or sets the teamId.
Declaration
public string TeamId { get; set; }
Property Value
Type | Description |
---|---|
System.String |
TeamName
Gets or sets the teamName.
Declaration
public string TeamName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Users
Gets or sets the users.
Declaration
public List<TeamUsers> Users { get; set; }
Property Value
Type | Description |
---|---|
List<TeamUsers> |