> ## Documentation Index
> Fetch the complete documentation index at: https://docs.superoffice.com/llms.txt
> Use this file to discover all available pages before exploring further.

# SuperOffice.WebApi.Data.ProjectMember

# <a id="SuperOffice_WebApi_Data_ProjectMember" /> Class ProjectMember

Namespace: [SuperOffice.WebApi.Data](SuperOffice.WebApi.Data.md)\
Assembly: SuperOffice.WebApi.dll

Carrier object for ProjectMember.
A person can be a member of multiple projects, with a different comment and member type in each project.

```csharp theme={null}
public class ProjectMember : Carrier
```

#### Inheritance

[object](https://learn.microsoft.com/dotnet/api/system.object) ←
[Carrier](SuperOffice.WebApi.Data.Carrier.md) ←
[ProjectMember](SuperOffice.WebApi.Data.ProjectMember.md)

#### Inherited Members

[Carrier.TableRight](SuperOffice.WebApi.Data.Carrier.md#SuperOffice_WebApi_Data_Carrier_TableRight),
[Carrier.FieldProperties](SuperOffice.WebApi.Data.Carrier.md#SuperOffice_WebApi_Data_Carrier_FieldProperties),
[object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring),
[object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals\(system-object\)),
[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals\(system-object-system-object\)),
[object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals),
[object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode),
[object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype),
[object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone)

## Examples

Get ProjectMember 123 using the WebApi client:
<pre><code class="lang-csharp">var configuration = new WebApiConfiguration(url);
var agent = new ProjectAgent(configuration);
var projectMember = agent.GetProjectMember( 123 );</code></pre>

## Remarks

Use <xref href="SuperOffice.CRM.Services.ArchiveAgent?text=Archive+agent" data-throw-if-not-resolved="false" />:
All ProjectMember: <pre><code class="lang-csharp">"ProjectMember"</code></pre>

## Constructors

### <a id="SuperOffice_WebApi_Data_ProjectMember__ctor" /> ProjectMember()

Default constructor - defaults any enum props to 0.

```csharp theme={null}
public ProjectMember()
```

## Properties

### <a id="SuperOffice_WebApi_Data_ProjectMember_Comment" /> Comment

Comment text on the project membership

```csharp theme={null}
public virtual string Comment { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_ProjectMember_ContactDepartment" /> ContactDepartment

Contact department

```csharp theme={null}
public virtual string ContactDepartment { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_ProjectMember_ContactId" /> ContactId

Contact ID of person who is the project member

```csharp theme={null}
public virtual int ContactId { get; set; }
```

#### Property Value

[int](https://learn.microsoft.com/dotnet/api/system.int32)

### <a id="SuperOffice_WebApi_Data_ProjectMember_ContactName" /> ContactName

Contact name

```csharp theme={null}
public virtual string ContactName { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_ProjectMember_CountryId" /> CountryId

Country

```csharp theme={null}
public virtual int CountryId { get; set; }
```

#### Property Value

[int](https://learn.microsoft.com/dotnet/api/system.int32)

### <a id="SuperOffice_WebApi_Data_ProjectMember_EmailAddress" /> EmailAddress

The e-mail address

```csharp theme={null}
public virtual string EmailAddress { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_ProjectMember_EmailAddressName" /> EmailAddressName

The e-mail address description

```csharp theme={null}
public virtual string EmailAddressName { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_ProjectMember_EmailId" /> EmailId

The person's email address id

```csharp theme={null}
public virtual int EmailId { get; set; }
```

#### Property Value

[int](https://learn.microsoft.com/dotnet/api/system.int32)

### <a id="SuperOffice_WebApi_Data_ProjectMember_EventParticipantStatus" /> EventParticipantStatus

Reserved field for Lyyti event participants.
NULL if unknown enum value.

```csharp theme={null}
[JsonIgnore]
public ProjectMemberEventParticipantStatus? EventParticipantStatus { get; set; }
```

#### Property Value

[ProjectMemberEventParticipantStatus](SuperOffice.WebApi.Data.ProjectMemberEventParticipantStatus.md)?

#### See Also

[ProjectMember](SuperOffice.WebApi.Data.ProjectMember.md).[EventParticipantStatus\_String](SuperOffice.WebApi.Data.ProjectMember.md#SuperOffice_WebApi_Data_ProjectMember_EventParticipantStatus_String)

### <a id="SuperOffice_WebApi_Data_ProjectMember_EventParticipantStatus_String" /> EventParticipantStatus\_String

Reserved field for Lyyti event participants.
Raw string enum value.

```csharp theme={null}
[JsonProperty("EventParticipantStatus")]
public string EventParticipantStatus_String { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

#### See Also

[ProjectMember](SuperOffice.WebApi.Data.ProjectMember.md).[EventParticipantStatus](SuperOffice.WebApi.Data.ProjectMember.md#SuperOffice_WebApi_Data_ProjectMember_EventParticipantStatus)

### <a id="SuperOffice_WebApi_Data_ProjectMember_Firstname" /> Firstname

First name

```csharp theme={null}
public virtual string Firstname { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_ProjectMember_FullName" /> FullName

The person's full name localized to the current culture/country.  (internal name used in clients for employees)

```csharp theme={null}
public virtual string FullName { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_ProjectMember_Lastname" /> Lastname

Last name

```csharp theme={null}
public virtual string Lastname { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_ProjectMember_MiddleName" /> MiddleName

Middle name or 'van' etc.

```csharp theme={null}
public virtual string MiddleName { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_ProjectMember_Mrmrs" /> Mrmrs

e.g. Mrs, Dr, Ms.

```csharp theme={null}
public virtual string Mrmrs { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_ProjectMember_PersonId" /> PersonId

The person's id - primary key

```csharp theme={null}
public virtual int PersonId { get; set; }
```

#### Property Value

[int](https://learn.microsoft.com/dotnet/api/system.int32)

### <a id="SuperOffice_WebApi_Data_ProjectMember_Phone" /> Phone

Phone number

```csharp theme={null}
public virtual string Phone { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_ProjectMember_PhoneId" /> PhoneId

The phone id

```csharp theme={null}
public virtual int PhoneId { get; set; }
```

#### Property Value

[int](https://learn.microsoft.com/dotnet/api/system.int32)

### <a id="SuperOffice_WebApi_Data_ProjectMember_ProjectId" /> ProjectId

Parent project - the project this project member belongs to.

```csharp theme={null}
public virtual int ProjectId { get; set; }
```

#### Property Value

[int](https://learn.microsoft.com/dotnet/api/system.int32)

### <a id="SuperOffice_WebApi_Data_ProjectMember_ProjectMemberTypeId" /> ProjectMemberTypeId

ProjectMember Type Id - from the ProjectMemberType list.
<p>Use MDO List name "PMembType" to get list items.</p>

```csharp theme={null}
public virtual int ProjectMemberTypeId { get; set; }
```

#### Property Value

[int](https://learn.microsoft.com/dotnet/api/system.int32)

### <a id="SuperOffice_WebApi_Data_ProjectMember_ProjectMemberTypeName" /> ProjectMemberTypeName

The projectmembers type name: 'secretary', 'member', etc.

```csharp theme={null}
public virtual string ProjectMemberTypeName { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_ProjectMember_ProjectName" /> ProjectName

Name of the project this project member belongs to.

```csharp theme={null}
public virtual string ProjectName { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_ProjectMember_ProjectmemberId" /> ProjectmemberId

Primary key

```csharp theme={null}
public virtual int ProjectmemberId { get; set; }
```

#### Property Value

[int](https://learn.microsoft.com/dotnet/api/system.int32)

### <a id="SuperOffice_WebApi_Data_ProjectMember_Registered" /> Registered

The date and time when the project member was registered

```csharp theme={null}
public virtual DateTime Registered { get; set; }
```

#### Property Value

[DateTime](https://learn.microsoft.com/dotnet/api/system.datetime)

### <a id="SuperOffice_WebApi_Data_ProjectMember_Updated" /> Updated

The date and time when the project member was last updated

```csharp theme={null}
public virtual DateTime Updated { get; set; }
```

#### Property Value

[DateTime](https://learn.microsoft.com/dotnet/api/system.datetime)

## See Also

[ProjectAgent](SuperOffice.WebApi.Agents.ProjectAgent.md),
[ArchiveAgent](SuperOffice.WebApi.Agents.ArchiveAgent.md),


## Related topics

- [SuperOffice.WebApi.Data.ProjectMemberEventParticipantStatus](/en/api/reference/webapi/SuperOffice.WebApi.Data.ProjectMemberEventParticipantStatus.md)
- [SuperOffice.WebApi.Agents.ProjectAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.ProjectAgent.md)
- [SuperOffice.WebApi.Agents.IProjectAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.IProjectAgent.md)
- [SuperOffice.WebApi.Data.Project AddProjectMembersRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.Project_AddProjectMembersRequest.md)
- [SuperOffice.WebApi.Data.Project UpdateProjectMemberRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.Project_UpdateProjectMemberRequest.md)
- [SuperOffice.WebApi.Data.Project UpdateProjectMembersRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.Project_UpdateProjectMembersRequest.md)
