• Articles
  • Api Documentation
Show / Hide Table of Contents
  • Dapplo.Jira
    • AgileExtensions
    • AttachmentExtensions
    • FilterExtensions
    • IJiraClient
    • IssueExtensions
    • JiraClient
    • JiraConfig
    • JiraException
    • ProjectExtensions
    • ServerExtensions
    • SessionExtensions
    • TimeSpanExtensions
    • UserExtensions
    • WorkExtensions
  • Dapplo.Jira.Domains
    • IAgileDomain
    • IAttachmentDomain
    • IFilterDomain
    • IIssueDomain
    • IJiraDomain
    • IProjectDomain
    • IServerDomain
    • ISessionDomain
    • IUserDomain
    • IWorkDomain
  • Dapplo.Jira.Entities
    • AgileIssue
    • AgileIssueFields
    • AllowedValue
    • Attachment
    • AttachmentContainer<T>
    • AvatarUrls
    • BaseId<TId>
    • BaseProperties<TId>
    • Board
    • BoardConfiguration
    • Column
    • ColumnConfig
    • Comment
    • Comments
    • Component
    • ComponentDigest
    • Configuration
    • Epic
    • EpicColor
    • Error
    • EstimationCustomFieldInfo
    • EstimationFieldInfo
    • Field
    • Filter
    • Issue
    • IssueBase
    • IssueFields
    • IssueType
    • IssueWithFields<TFields>
    • LoginInfo
    • Pageable
    • PageableResult
    • PossibleField
    • Priority
    • ProgressInfo
    • Project
    • ProjectCategory
    • ProjectDigest
    • RankingCustomFieldInfo
    • Resolution
    • Results<TResultType>
    • Schema
    • Search
    • SearchResult<TIssue>
    • ServerInfo
    • SharePermission
    • Sprint
    • Status
    • StatusCategory
    • Subscription
    • Subscriptions
    • TimeTracking
    • TimeTrackingConfiguration
    • Transition
    • Transitions
    • User
    • Version
    • Visibility
    • VoteInfo
    • Watches
    • Worklog
    • Worklogs
  • Dapplo.Jira.Enums
    • AdjustEstimate
    • AvatarSizes
    • BoardTypes
  • Dapplo.Jira.Json
    • CustomDateTimeOffsetConverter
  • Dapplo.Jira.Query
    • DatetimeClause
    • Fields
    • IDatetimeClause
    • IDatetimeClauseWithoutValue
    • IFinalClause
    • IIssueClause
    • IProjectClause
    • ISimpleValueClause
    • IssueClause
    • ITextClause
    • ITypeClause
    • IUserClause
    • IVersionClause
    • Operators
    • ProjectClause
    • SimpleValueClause
    • TextClause
    • TypeClause
    • UserClause
    • VersionClause
    • Where

Class Project

Project information (retrieved via /project/id) See: https://docs.atlassian.com/jira/REST/latest/#api/2/project

Inheritance
System.Object
BaseId<System.Int64>
BaseProperties<System.Int64>
ProjectDigest
Project
Inherited Members
ProjectDigest.Avatar
ProjectDigest.Category
ProjectDigest.Key
ProjectDigest.Lead
ProjectDigest.Name
ProjectDigest.ProjectKeys
BaseProperties<Int64>.Self
BaseId<Int64>.Id
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace:Dapplo.Jira.Entities
Assembly:Dapplo.Jira.dll
Syntax
[JsonObject]
public class Project : ProjectDigest

Properties

| Improve this Doc View Source

AssigneeType

AssigneeType describes how the assignment of tickets works, if this says project-lead every ticket will be assigned to the person which that role.

Declaration
[JsonProperty(PropertyName = "assigneeType")]
public string AssigneeType { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

BrowseUrl

Url to browse the tickets with

Declaration
[JsonProperty(PropertyName = "url")]
public Uri BrowseUrl { get; set; }
Property Value
Type Description
System.Uri
| Improve this Doc View Source

Components

Components for this project, this is only a "digest" retrieve the component details for more information.

Declaration
[JsonProperty(PropertyName = "components")]
public IList<ComponentDigest> Components { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<ComponentDigest>
| Improve this Doc View Source

Description

The description of the project

Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Email

TODO: Uncertain what this is, please comment!

Declaration
[JsonProperty(PropertyName = "email")]
public string Email { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

IssueTypes

Possible issue types for this project

Declaration
[JsonProperty(PropertyName = "issueTypes")]
public IList<IssueType> IssueTypes { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<IssueType>
| Improve this Doc View Source

Roles

Urls to the possible roles for this project

Declaration
[JsonProperty(PropertyName = "roles")]
public IDictionary<string, Uri> Roles { get; set; }
Property Value
Type Description
System.Collections.Generic.IDictionary<System.String, System.Uri>
| Improve this Doc View Source

Versions

Possible versions for this project

Declaration
[JsonProperty(PropertyName = "versions")]
public IList<Version> Versions { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Version>
  • Improve this Doc
  • View Source
Back to top Copyright © 2017 Dapplo