Table of Contents

Class Teams

Namespace
BoldSign.Model
Assembly
BoldSign.Api.dll

Team and team user details.

[DataContract]
public class Teams
Inheritance
Teams
Inherited Members

Constructors

Teams(string, long, long, string)

Initializes a new instance of the Teams class.

public Teams(string teamName = null, long createdDate = 0, long modifiedDate = 0, string teamId = null)

Parameters

teamName string

Gets or sets the team Name.

createdDate long

Gets or sets created Date.

modifiedDate long

Gets or sets modified Date.

teamId string

Gets or sets teamId.

Properties

CreatedDate

Gets or sets the created Date.

[DataMember(Name = "createdDate", EmitDefaultValue = false)]
public long CreatedDate { get; set; }

Property Value

long

ModifiedDate

Gets or sets the modified Date.

[DataMember(Name = "modifiedDate", EmitDefaultValue = false)]
public long ModifiedDate { get; set; }

Property Value

long

TeamId

Gets or sets the teamId.

[DataMember(Name = "teamId", EmitDefaultValue = false)]
public string TeamId { get; set; }

Property Value

string

TeamName

Gets or sets the team Name.

[DataMember(Name = "teamName", EmitDefaultValue = false)]
public string TeamName { get; set; }

Property Value

string